Kuda Rukuni

Results 6 issues of Kuda Rukuni

solana-test-validator --log Aborted

# Bug report - Version: 0.5.2 ## Description Error: The Serverless Function "api/index" is 69.61mb which exceeds the maximum size limit of 50mb. Learn More: https://vercel.link/serverless-function-size

I am trying to deploy an anchor program via Solana CLI using anchor deploy but either it keeps getting timed out or exceeds max retries. However, when I deploy on...

enhancement
build

#include #include ESP32QRCodeReader reader(CAMERA_MODEL_AI_THINKER); void onQrCodeTask(void *pvParameters){ struct QRCodeData qrCodeData; while (true){ if (reader.receiveQrCode(&qrCodeData, 100)){ if (qrCodeData.valid){ Serial.println((const char *)qrCodeData.payload); } } vTaskDelay(100 / portTICK_PERIOD_MS); } } void setup(){ Serial.begin(115200);...

here is the code im using. #include #include #include #include ESPVGAX2 vga; uint8_t borderColor = 0xf; void setup() { Serial.begin(115200); vga.begin(); vga.setBitmapFont((uint8_t*)img2_monodos8_data, 8); vga.drawLine(0, 0, displayWidth - 1, 0, borderColor);...