You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to compile this and I keep getting hit with errors.
`src/main.cpp:354:118: warning: format '%d' expects argument of type 'int', but argument 6 has type 'long unsigned int' [-Wformat=]
Serial.printf("ret: %d == %s, compress: %d, uncompress: %d, r: %d\n", ret, mz_error(ret), compress_size, un_size, r);
^
src/main.cpp:359:18: error: 'class MatrixPanel_I2S_DMA' has no member named 'drawPixelRGB565'
dma_display.drawPixelRGB565 (i%MATRIX_WIDTH, i/MATRIX_WIDTH, ((uint16_t*)buff_test)[i]);
^
src/main.cpp: In function 'void udp_receive(AsyncUDP_bigPacket)':
src/main.cpp:591:19: error: 'class MatrixPanel_I2S_DMA' has no member named 'drawPixelRGB565'
dma_display.drawPixelRGB565((i + leds_off) % MATRIX_WIDTH, (i + leds_off) / MATRIX_WIDTH, data16[i]);
^
src/main.cpp:681:21: error: 'class MatrixPanel_I2S_DMA' has no member named 'drawPixelRGB565'
dma_display.drawPixelRGB565(i%128, i/128, ((uint16_t*)leds)[i]);`
Any thoughts or ideas?
The text was updated successfully, but these errors were encountered:
Trying to compile this and I keep getting hit with errors.
`src/main.cpp:354:118: warning: format '%d' expects argument of type 'int', but argument 6 has type 'long unsigned int' [-Wformat=]
Serial.printf("ret: %d == %s, compress: %d, uncompress: %d, r: %d\n", ret, mz_error(ret), compress_size, un_size, r);
^
src/main.cpp:359:18: error: 'class MatrixPanel_I2S_DMA' has no member named 'drawPixelRGB565'
dma_display.drawPixelRGB565 (i%MATRIX_WIDTH, i/MATRIX_WIDTH, ((uint16_t*)buff_test)[i]);
^
src/main.cpp: In function 'void udp_receive(AsyncUDP_bigPacket)':
src/main.cpp:591:19: error: 'class MatrixPanel_I2S_DMA' has no member named 'drawPixelRGB565'
dma_display.drawPixelRGB565((i + leds_off) % MATRIX_WIDTH, (i + leds_off) / MATRIX_WIDTH, data16[i]);
^
src/main.cpp:681:21: error: 'class MatrixPanel_I2S_DMA' has no member named 'drawPixelRGB565'
dma_display.drawPixelRGB565(i%128, i/128, ((uint16_t*)leds)[i]);`
Any thoughts or ideas?
The text was updated successfully, but these errors were encountered: