Maverik1408

Results 13 comments of Maverik1408

thank you but now i have another error `"[Error](0.826, +826) remove_free_block: Asserted at expression: prev && "prev_free field can not be null" (in lv_tlsf.c line #590)"` you can help me...

I changed the close function ``` static lv_fs_res_t sd_fs_close(lv_fs_drv_t *drv, void *file_p) { File *fp = (File *)file_p; fp->close(); //delete (fp); // when close lv_mem_free(fp); return LV_FS_RES_OK; } ``` but...

How can I explain the problem better to you. I tried removing `lv_img_set_src(ui_Image1, "F:/wink.png");` and I don't get any errors i have define this `#define LV_MEM_CUSTOM 0`

this is my code but not working :( this is error ``` ESP32 Chip: ESP32-D0WDQ6 Arduino Version: 2.0.11 ESP-IDF Version: 4.4.5 ARDUINO_LOOP_STACK_SIZE 8192 words (32 bit) FLASH size 4194304 bytes,...

now i setting `#define LV_MEM_CUSTOM 1` it was before `#define LV_MEM_CUSTOM 0` after i change `lv_img_set_src(ui_Image1, "F:/pause.png");` to `lv_img_set_src(ui_Image1, "F:pause.png");` now i don't have any error but not showing image...

first code part: ``` lv_fs_file_t f; lv_fs_res_t res; res = lv_fs_open(&f, "F:pause.png", LV_FS_MODE_RD); // system crash here if (res != LV_FS_RES_OK) Serial.println("don't work nothing open"); if(res == LV_FS_RES_OK) Serial.println("file open");...

thank you i solved problem ! :)

Hi everyone, so will the driver be integrated with the new version?

i find this [https://github.com/100askTeam/esp-arduino-learn/blob/master/examples/08_integrated/01_lcd_sd_card_fc_joypad_fs_lv_lib_100ask/01_lcd_sd_card_fc_joypad_fs_lv_lib_100ask.ino#L47](url) and start

hi thanks for the help, I used the example here on github. when I frame with Android it instantly returns the code while with iPhone it doesn't happen in the...