Hello
Im trying to load the basic example on a stm32f429 discovery board.
Im not doing anything unusual,
lv_init();
tft_init();
lv_png_init();
.
.
.
LV_IMG_DECLARE(png_decoder_test);
lv_obj_t * imgpng = lv_img_create(lv_scr_act(), NULL);
lv_img_set_src(imgpng, &png_decoder_test);
lv_obj_align(imgpng, NULL, LV_ALIGN_CENTER, 0, 0);
The only thing I get on the screen is:
I just have one image, but I've #define LV_IMG_CACHE_DEF_SIZE 2
Is there anything else I need to think about?
Im using "7faf20592598e7f891cf2aceca32bbe6ff5fc36c"