lvgl: FatFS doesn't work

Perform all steps below and tick them with [x]

  • Read the FAQ
  • Check the related part of the Documentation
  • Update lvgl to the latest version
  • Reproduce the issue in a Simulator

Describe the bug

Compile fails after enabling the FatFS usage in lv_conf.h and try to use it:

/.../Arduino/libraries/lvgl/src/extra/libs/fsdrv/lv_fs_fatfs.c: In function 'fs_dir_open':
/.../Arduino/libraries/lvgl/src/extra/libs/fsdrv/lv_fs_fatfs.c:228:5: error: unknown type name 'DIR'; did you mean 'DDR'?
     DIR * d = lv_mem_alloc(sizeof(DIR));
     ^~~

To Reproduce

enable FatsFS usage:

/*API for FATFS (needs to be added separately). Uses f_open, f_read, etc*/
#define LV_USE_FS_FATFS  1
#if LV_USE_FS_FATFS
    #define LV_FS_FATFS_LETTER 'S'     /*Set an upper cased letter on which the drive will accessible (e.g. 'A')*/
    #define LV_FS_FATFS_CACHE_SIZE 0    /*>0 to cache this number of bytes in lv_fs_read()*/
#endif

Try to use it for instance with image upload:

    LV_IMG_DECLARE(mountain);
    lv_obj_t * backgroung = lv_img_create(lv_scr_act());
    lv_img_set_src(backgroung, "S:mountain.bin");
    lv_obj_align(backgroung, LV_ALIGN_CENTER, 0, -20);
    lv_obj_set_size(backgroung, 800, 520);

Expected behavior

The compilation goes fine and FatFS can be used.

Screenshots or video

/.../Arduino/libraries/lvgl/src/extra/libs/fsdrv/lv_fs_fatfs.c: In function 'fs_dir_open':
/.../Arduino/libraries/lvgl/src/extra/libs/fsdrv/lv_fs_fatfs.c:228:5: error: unknown type name 'DIR'; did you mean 'DDR'?
     DIR * d = lv_mem_alloc(sizeof(DIR));
     ^~~

About this issue

  • Original URL
  • State: closed
  • Created 2 years ago
  • Comments: 24 (9 by maintainers)

Most upvoted comments

Without gate crashing this issue, I am happy to raise a separate one but believe this is the same issue as @shur1k with LVGL FatFS, ie image not rendering. It doesn’t show the data element of the image but you can tell it is reading part of the file as it renders the pixel size correctly but displays a white box with No Data.

33331fb1e3ebd61f6a56bdabe5ef703cf4032642

I’ve posted about it in the LVGL forum LVGL is not loading image file with FatFS - no data and found a slight workaround but it is not perfect: I’m wondering whether it could be a bug with how the built-in File System utilises FatFs and lv_img_set_src as I’ve proven the file is being read manually and loaded via LVGL: lv_fs_res_t res = LV_FS_RES_OK; lv_fs_file_t f; res = lv_fs_open(&f, "A:image.bin", LV_FS_MODE_RD); res = lv_fs_seek(&f, 0, LV_FS_SEEK_END); res = lv_fs_tell(&f, &fSize); res = lv_fs_read(&f, buf, fSize, &rd);

1587160f970f531d5dd4d83c92f45cad993623fd_2_690x379

But it just doesnt render the image if I call lv_img_set_src(img, "A:image.bin"), I have to instead call my custom function to pre-load lv_img_set_src(img, lv_img_dsc_load_src("A:image.bin"));

lv_img_dsc_load_src

lv_img_dsc_t* lv_img_dsc_load_src(const char* src)
{
    lv_fs_res_t res = LV_FS_RES_OK;

    lv_fs_file_t f;
    uint32_t fSize = 0;
    res = lv_fs_open(&f, src, LV_FS_MODE_RD);
    if (res != LV_FS_RES_OK)
    {
        LV_LOG_ERROR("[Preload] (%s) FS open failed.", src);
        return NULL;
    }
    res = lv_fs_seek(&f, 0, LV_FS_SEEK_END);
    if (res != LV_FS_RES_OK)
    {
        LV_LOG_ERROR("[Preload] (%s) Seek end failed.", src);
        lv_fs_close(&f);
        return NULL;
    }
    res = lv_fs_tell(&f, &fSize);
    if (res != LV_FS_RES_OK)
    {
        LV_LOG_ERROR("[Preload] (%s) Get size failed.", src);
        lv_fs_close(&f);
        return NULL;
    }
    res = lv_fs_seek(&f, 0, LV_FS_SEEK_SET);
    if (res != LV_FS_RES_OK)
    {
        LV_LOG_ERROR("[Preload] (%s) Seek start failed.", src);
        lv_fs_close(&f);
        return NULL;
    }
    uint32_t rd = 0;
    uint8_t* buf = (uint8_t*)lv_mem_alloc(fSize);
    res = lv_fs_read(&f, buf, fSize, &rd);
    if (res != LV_FS_RES_OK || rd != fSize)
    {
        LV_LOG_ERROR("[Preload] (%s) Read failed.", src);
        lv_fs_close(&f);
        return NULL;
    }

    lv_img_dsc_t* img_dsc = (lv_img_dsc_t*)buf;
    img_dsc->data_size = lv_img_buf_get_img_size(img_dsc->header.w, img_dsc->header.h, img_dsc->header.cf);
    img_dsc->data = (uint8_t*)buf + sizeof(lv_img_header_t);

    lv_fs_close(&f);

    return img_dsc;
}

I’ve not had a chance to debug but will hopefully look in to it this week.

If I set the log level to LV_LOG_LEVEL_TRACE it crashes on me just before it loads the image using the standard method as per the docs for loading a .bin image, below is part of the full logs captured up to the point it crashes.

IMG-20230107-WA0003

TRACE Log - Click Me to open

Trace Log

[Trace] (1.870, +9)      lv_mem_realloc: allocated at 0x20005430        (in lv_mem.c line #215)
[Trace] (1.877, +7)      lv_mem_realloc: reallocating 0x20005430 with 24 size   (in lv_mem.c line #196)
[Trace] (1.886, +9)      lv_mem_realloc: allocated at 0x20005430        (in lv_mem.c line #215)
[Trace] (1.893, +7)      lv_mem_realloc: reallocating 0x20005430 with 30 size   (in lv_mem.c line #196)
[Trace] (1.902, +9)      lv_mem_realloc: allocated at 0x20005430        (in lv_mem.c line #215)
[Trace] (1.910, +8)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (1.917, +7)      lv_mem_alloc: allocated at 0x20005454  (in lv_mem.c line #160)
[Trace] (1.924, +7)      lv_mem_realloc: reallocating 0x20005454 with 18 size   (in lv_mem.c line #196)
[Trace] (1.933, +9)      lv_mem_realloc: allocated at 0x20005454        (in lv_mem.c line #215)
[Trace] (1.940, +7)      lv_mem_realloc: reallocating 0x20005454 with 24 size   (in lv_mem.c line #196)
[Trace] (1.949, +9)      lv_mem_realloc: allocated at 0x20005454        (in lv_mem.c line #215)
[Trace] (1.956, +7)      lv_mem_realloc: reallocating 0x20005454 with 30 size   (in lv_mem.c line #196)
[Trace] (1.965, +9)      lv_mem_realloc: allocated at 0x20005454        (in lv_mem.c line #215)
[Trace] (1.972, +7)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (1.979, +7)      lv_mem_alloc: allocated at 0x20005478  (in lv_mem.c line #160)
[Trace] (1.987, +8)      lv_mem_realloc: reallocating 0x20005478 with 18 size   (in lv_mem.c line #196)
[Trace] (1.995, +8)      lv_mem_realloc: allocated at 0x20005478        (in lv_mem.c line #215)
[Trace] (2.003, +8)      lv_mem_realloc: reallocating 0x20005478 with 24 size   (in lv_mem.c line #196)
[Trace] (2.011, +8)      lv_mem_realloc: allocated at 0x20005478        (in lv_mem.c line #215)
[Trace] (2.019, +8)      lv_mem_realloc: reallocating 0x20005478 with 30 size   (in lv_mem.c line #196)
[Trace] (2.028, +9)      lv_mem_realloc: allocated at 0x20005478        (in lv_mem.c line #215)
[Trace] (2.035, +7)      lv_mem_realloc: reallocating 0x20005478 with 36 size   (in lv_mem.c line #196)
[Trace] (2.044, +9)      lv_mem_realloc: allocated at 0x20005478        (in lv_mem.c line #215)
[Trace] (2.051, +7)      lv_mem_realloc: reallocating 0x20005478 with 42 size   (in lv_mem.c line #196)
[Trace] (2.060, +9)      lv_mem_realloc: allocated at 0x20005478        (in lv_mem.c line #215)
[Trace] (2.067, +7)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (2.074, +7)      lv_mem_alloc: allocated at 0x200054a8  (in lv_mem.c line #160)
[Trace] (2.082, +8)      lv_mem_realloc: reallocating 0x200054a8 with 18 size   (in lv_mem.c line #196)
[Trace] (2.090, +8)      lv_mem_realloc: allocated at 0x200054a8        (in lv_mem.c line #215)
[Trace] (2.098, +8)      lv_mem_realloc: reallocating 0x200054a8 with 24 size   (in lv_mem.c line #196)
[Trace] (2.106, +8)      lv_mem_realloc: allocated at 0x200054a8        (in lv_mem.c line #215)
[Trace] (2.114, +8)      lv_mem_realloc: reallocating 0x200054a8 with 30 size   (in lv_mem.c line #196)
[Trace] (2.123, +9)      lv_mem_realloc: allocated at 0x200054a8        (in lv_mem.c line #215)
[Trace] (2.130, +7)      lv_mem_realloc: reallocating 0x200054a8 with 36 size   (in lv_mem.c line #196)
[Trace] (2.139, +9)      lv_mem_realloc: allocated at 0x200054a8        (in lv_mem.c line #215)
[Trace] (2.146, +7)      lv_mem_realloc: reallocating 0x200054a8 with 42 size   (in lv_mem.c line #196)
[Trace] (2.155, +9)      lv_mem_realloc: allocated at 0x200054a8        (in lv_mem.c line #215)
[Trace] (2.162, +7)      lv_mem_realloc: reallocating 0x200054a8 with 48 size   (in lv_mem.c line #196)
[Trace] (2.171, +9)      lv_mem_realloc: allocated at 0x200054a8        (in lv_mem.c line #215)
[Trace] (2.178, +7)      lv_mem_realloc: reallocating 0x200054a8 with 54 size   (in lv_mem.c line #196)
[Trace] (2.187, +9)      lv_mem_realloc: allocated at 0x200054a8        (in lv_mem.c line #215)
[Trace] (2.195, +8)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (2.202, +7)      lv_mem_alloc: allocated at 0x200054e4  (in lv_mem.c line #160)
[Trace] (2.209, +7)      lv_mem_realloc: reallocating 0x200054e4 with 18 size   (in lv_mem.c line #196)
[Trace] (2.218, +9)      lv_mem_realloc: allocated at 0x200054e4        (in lv_mem.c line #215)
[Trace] (2.225, +7)      lv_mem_realloc: reallocating 0x200054e4 with 24 size   (in lv_mem.c line #196)
[Trace] (2.234, +9)      lv_mem_realloc: allocated at 0x200054e4        (in lv_mem.c line #215)
[Trace] (2.241, +7)      lv_mem_realloc: reallocating 0x200054e4 with 30 size   (in lv_mem.c line #196)
[Trace] (2.250, +9)      lv_mem_realloc: allocated at 0x200054e4        (in lv_mem.c line #215)
[Trace] (2.257, +7)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (2.264, +7)      lv_mem_alloc: allocated at 0x20005508  (in lv_mem.c line #160)
[Trace] (2.272, +8)      lv_mem_realloc: reallocating 0x20005508 with 18 size   (in lv_mem.c line #196)
[Trace] (2.280, +8)      lv_mem_realloc: allocated at 0x20005508        (in lv_mem.c line #215)
[Trace] (2.288, +8)      lv_mem_realloc: reallocating 0x20005508 with 24 size   (in lv_mem.c line #196)
[Trace] (2.296, +8)      lv_mem_realloc: allocated at 0x20005508        (in lv_mem.c line #215)
[Trace] (2.304, +8)      lv_mem_realloc: reallocating 0x20005508 with 30 size   (in lv_mem.c line #196)
[Trace] (2.313, +9)      lv_mem_realloc: allocated at 0x20005508        (in lv_mem.c line #215)
[Trace] (2.320, +7)      lv_mem_realloc: reallocating 0x20005508 with 36 size   (in lv_mem.c line #196)
[Trace] (2.329, +9)      lv_mem_realloc: allocated at 0x20005508        (in lv_mem.c line #215)
[Trace] (2.336, +7)      lv_mem_realloc: reallocating 0x20005508 with 42 size   (in lv_mem.c line #196)
[Trace] (2.345, +9)      lv_mem_realloc: allocated at 0x20005508        (in lv_mem.c line #215)
[Trace] (2.352, +7)      lv_mem_realloc: reallocating 0x20005508 with 48 size   (in lv_mem.c line #196)
[Trace] (2.361, +9)      lv_mem_realloc: allocated at 0x20005508        (in lv_mem.c line #215)
[Trace] (2.368, +7)      lv_mem_realloc: reallocating 0x20005508 with 54 size   (in lv_mem.c line #196)
[Trace] (2.377, +9)      lv_mem_realloc: allocated at 0x20005508        (in lv_mem.c line #215)
[Trace] (2.385, +8)      lv_mem_realloc: reallocating 0x20005508 with 60 size   (in lv_mem.c line #196)
[Trace] (2.393, +8)      lv_mem_realloc: allocated at 0x20005508        (in lv_mem.c line #215)
[Trace] (2.401, +8)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (2.408, +7)      lv_mem_alloc: allocated at 0x20005548  (in lv_mem.c line #160)
[Trace] (2.415, +7)      lv_mem_realloc: reallocating 0x20005548 with 18 size   (in lv_mem.c line #196)
[Trace] (2.424, +9)      lv_mem_realloc: allocated at 0x20005548        (in lv_mem.c line #215)
[Trace] (2.431, +7)      lv_mem_realloc: reallocating 0x20005548 with 24 size   (in lv_mem.c line #196)
[Trace] (2.440, +9)      lv_mem_realloc: allocated at 0x20005548        (in lv_mem.c line #215)
[Trace] (2.447, +7)      lv_mem_realloc: reallocating 0x20005548 with 30 size   (in lv_mem.c line #196)
[Trace] (2.456, +9)      lv_mem_realloc: allocated at 0x20005548        (in lv_mem.c line #215)
[Trace] (2.463, +7)      lv_mem_realloc: reallocating 0x20005548 with 36 size   (in lv_mem.c line #196)
[Trace] (2.472, +9)      lv_mem_realloc: allocated at 0x20005548        (in lv_mem.c line #215)
[Trace] (2.480, +8)      lv_mem_realloc: reallocating 0x20005548 with 42 size   (in lv_mem.c line #196)
[Trace] (2.488, +8)      lv_mem_realloc: allocated at 0x20005548        (in lv_mem.c line #215)
[Trace] (2.496, +8)      lv_mem_realloc: reallocating 0x20005548 with 48 size   (in lv_mem.c line #196)
[Trace] (2.504, +8)      lv_mem_realloc: allocated at 0x20005548        (in lv_mem.c line #215)
[Trace] (2.512, +8)      lv_mem_realloc: reallocating 0x20005548 with 54 size   (in lv_mem.c line #196)
[Trace] (2.520, +8)      lv_mem_realloc: allocated at 0x20005548        (in lv_mem.c line #215)
[Trace] (2.528, +8)      lv_mem_realloc: reallocating 0x20005548 with 60 size   (in lv_mem.c line #196)
[Trace] (2.537, +9)      lv_mem_realloc: allocated at 0x20005548        (in lv_mem.c line #215)
[Trace] (2.544, +7)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (2.551, +7)      lv_mem_alloc: allocated at 0x20005588  (in lv_mem.c line #160)
[Trace] (2.558, +7)      lv_mem_realloc: reallocating 0x20005588 with 18 size   (in lv_mem.c line #196)
[Trace] (2.567, +9)      lv_mem_realloc: allocated at 0x20005588        (in lv_mem.c line #215)
[Trace] (2.575, +8)      lv_mem_realloc: reallocating 0x20005588 with 24 size   (in lv_mem.c line #196)
[Trace] (2.583, +8)      lv_mem_realloc: allocated at 0x20005588        (in lv_mem.c line #215)
[Trace] (2.591, +8)      lv_mem_realloc: reallocating 0x20005588 with 30 size   (in lv_mem.c line #196)
[Trace] (2.599, +8)      lv_mem_realloc: allocated at 0x20005588        (in lv_mem.c line #215)
[Trace] (2.607, +8)      lv_mem_realloc: reallocating 0x20005588 with 36 size   (in lv_mem.c line #196)
[Trace] (2.615, +8)      lv_mem_realloc: allocated at 0x20005588        (in lv_mem.c line #215)
[Trace] (2.623, +8)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (2.630, +7)      lv_mem_alloc: allocated at 0x200055b0  (in lv_mem.c line #160)
[Trace] (2.637, +7)      lv_mem_realloc: reallocating 0x200055b0 with 18 size   (in lv_mem.c line #196)
[Trace] (2.646, +9)      lv_mem_realloc: allocated at 0x200055b0        (in lv_mem.c line #215)
[Trace] (2.653, +7)      lv_mem_realloc: reallocating 0x200055b0 with 24 size   (in lv_mem.c line #196)
[Trace] (2.662, +9)      lv_mem_realloc: allocated at 0x200055b0        (in lv_mem.c line #215)
[Trace] (2.670, +8)      lv_mem_realloc: reallocating 0x200055b0 with 30 size   (in lv_mem.c line #196)
[Trace] (2.678, +8)      lv_mem_realloc: allocated at 0x200055b0        (in lv_mem.c line #215)
[Trace] (2.686, +8)      lv_mem_realloc: reallocating 0x200055b0 with 36 size   (in lv_mem.c line #196)
[Trace] (2.694, +8)      lv_mem_realloc: allocated at 0x200055b0        (in lv_mem.c line #215)
[Trace] (2.702, +8)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (2.709, +7)      lv_mem_alloc: allocated at 0x200055d8  (in lv_mem.c line #160)
[Trace] (2.716, +7)      lv_mem_realloc: reallocating 0x200055d8 with 18 size   (in lv_mem.c line #196)
[Trace] (2.725, +9)      lv_mem_realloc: allocated at 0x200055d8        (in lv_mem.c line #215)
[Trace] (2.732, +7)      lv_mem_realloc: reallocating 0x200055d8 with 24 size   (in lv_mem.c line #196)
[Trace] (2.741, +9)      lv_mem_realloc: allocated at 0x200055d8        (in lv_mem.c line #215)
[Trace] (2.748, +7)      lv_mem_realloc: reallocating 0x200055d8 with 30 size   (in lv_mem.c line #196)
[Trace] (2.757, +9)      lv_mem_realloc: allocated at 0x200055d8        (in lv_mem.c line #215)
[Trace] (2.765, +8)      lv_mem_realloc: reallocating 0x200055d8 with 36 size   (in lv_mem.c line #196)
[Trace] (2.773, +8)      lv_mem_realloc: allocated at 0x200055d8        (in lv_mem.c line #215)
[Trace] (2.781, +8)      lv_mem_realloc: reallocating 0x200055d8 with 42 size   (in lv_mem.c line #196)
[Trace] (2.789, +8)      lv_mem_realloc: allocated at 0x200055d8        (in lv_mem.c line #215)
[Trace] (2.797, +8)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (2.804, +7)      lv_mem_alloc: allocated at 0x20005608  (in lv_mem.c line #160)
[Trace] (2.811, +7)      lv_mem_realloc: reallocating 0x20005608 with 18 size   (in lv_mem.c line #196)
[Trace] (2.820, +9)      lv_mem_realloc: allocated at 0x20005608        (in lv_mem.c line #215)
[Trace] (2.827, +7)      lv_mem_realloc: reallocating 0x20005608 with 24 size   (in lv_mem.c line #196)
[Trace] (2.836, +9)      lv_mem_realloc: allocated at 0x20005608        (in lv_mem.c line #215)
[Trace] (2.843, +7)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (2.850, +7)      lv_mem_alloc: allocated at 0x20005624  (in lv_mem.c line #160)
[Trace] (2.858, +8)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (2.865, +7)      lv_mem_alloc: allocated at 0x20005634  (in lv_mem.c line #160)
[Trace] (2.872, +7)      lv_mem_realloc: reallocating 0x20005634 with 18 size   (in lv_mem.c line #196)
[Trace] (2.881, +9)      lv_mem_realloc: allocated at 0x20005634        (in lv_mem.c line #215)
[Trace] (2.888, +7)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (2.895, +7)      lv_mem_alloc: allocated at 0x2000564c  (in lv_mem.c line #160)
[Trace] (2.902, +7)      lv_mem_realloc: reallocating 0x2000564c with 18 size   (in lv_mem.c line #196)
[Trace] (2.911, +9)      lv_mem_realloc: allocated at 0x2000564c        (in lv_mem.c line #215)
[Trace] (2.919, +8)      lv_mem_realloc: reallocating 0x2000564c with 24 size   (in lv_mem.c line #196)
[Trace] (2.927, +8)      lv_mem_realloc: allocated at 0x2000564c        (in lv_mem.c line #215)
[Trace] (2.935, +8)      lv_mem_realloc: reallocating 0x2000564c with 30 size   (in lv_mem.c line #196)
[Trace] (2.943, +8)      lv_mem_realloc: allocated at 0x2000564c        (in lv_mem.c line #215)
[Trace] (2.951, +8)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (2.958, +7)      lv_mem_alloc: allocated at 0x20005670  (in lv_mem.c line #160)
[Trace] (2.965, +7)      lv_mem_realloc: reallocating 0x20005670 with 18 size   (in lv_mem.c line #196)
[Trace] (2.974, +9)      lv_mem_realloc: allocated at 0x20005670        (in lv_mem.c line #215)
[Trace] (2.981, +7)      lv_mem_realloc: reallocating 0x20005670 with 24 size   (in lv_mem.c line #196)
[Trace] (2.990, +9)      lv_mem_realloc: allocated at 0x20005670        (in lv_mem.c line #215)
[Trace] (2.997, +7)      lv_mem_realloc: reallocating 0x20005670 with 30 size   (in lv_mem.c line #196)
[Trace] (3.006, +9)      lv_mem_realloc: allocated at 0x20005670        (in lv_mem.c line #215)
[Trace] (3.014, +8)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (3.021, +7)      lv_mem_alloc: allocated at 0x20005694  (in lv_mem.c line #160)
[Trace] (3.028, +7)      lv_mem_realloc: reallocating 0x20005694 with 18 size   (in lv_mem.c line #196)
[Trace] (3.036, +8)      lv_mem_realloc: allocated at 0x20005694        (in lv_mem.c line #215)
[Trace] (3.044, +8)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (3.051, +7)      lv_mem_alloc: allocated at 0x200056ac  (in lv_mem.c line #160)
[Trace] (3.058, +7)      lv_mem_realloc: reallocating 0x200056ac with 18 size   (in lv_mem.c line #196)
[Trace] (3.067, +9)      lv_mem_realloc: allocated at 0x200056ac        (in lv_mem.c line #215)
[Trace] (3.074, +7)      lv_mem_realloc: reallocating 0x200056ac with 24 size   (in lv_mem.c line #196)
[Trace] (3.083, +9)      lv_mem_realloc: allocated at 0x200056ac        (in lv_mem.c line #215)
[Trace] (3.091, +8)      lv_mem_realloc: reallocating 0x200056ac with 30 size   (in lv_mem.c line #196)
[Trace] (3.099, +8)      lv_mem_realloc: allocated at 0x200056ac        (in lv_mem.c line #215)
[Trace] (3.107, +8)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (3.114, +7)      lv_mem_alloc: allocated at 0x200056d0  (in lv_mem.c line #160)
[Trace] (3.121, +7)      lv_mem_realloc: reallocating 0x200056d0 with 18 size   (in lv_mem.c line #196)
[Trace] (3.130, +9)      lv_mem_realloc: allocated at 0x200056d0        (in lv_mem.c line #215)
[Trace] (3.137, +7)      lv_mem_realloc: reallocating 0x200056d0 with 24 size   (in lv_mem.c line #196)
[Trace] (3.146, +9)      lv_mem_realloc: allocated at 0x200056d0        (in lv_mem.c line #215)
[Trace] (3.153, +7)      lv_mem_realloc: reallocating 0x200056d0 with 30 size   (in lv_mem.c line #196)
[Trace] (3.162, +9)      lv_mem_realloc: allocated at 0x200056d0        (in lv_mem.c line #215)
[Trace] (3.169, +7)      lv_mem_realloc: reallocating 0x200056d0 with 36 size   (in lv_mem.c line #196)
[Trace] (3.178, +9)      lv_mem_realloc: allocated at 0x200056d0        (in lv_mem.c line #215)
[Trace] (3.186, +8)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (3.193, +7)      lv_mem_alloc: allocated at 0x200056f8  (in lv_mem.c line #160)
[Trace] (3.200, +7)      lv_mem_realloc: reallocating 0x200056f8 with 18 size   (in lv_mem.c line #196)
[Trace] (3.209, +9)      lv_mem_realloc: allocated at 0x200056f8        (in lv_mem.c line #215)
[Trace] (3.216, +7)      lv_mem_realloc: reallocating 0x200056f8 with 24 size   (in lv_mem.c line #196)
[Trace] (3.225, +9)      lv_mem_realloc: allocated at 0x200056f8        (in lv_mem.c line #215)
[Trace] (3.232, +7)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (3.239, +7)      lv_mem_alloc: allocated at 0x20005714  (in lv_mem.c line #160)
[Trace] (3.246, +7)      lv_mem_realloc: reallocating 0x20005714 with 18 size   (in lv_mem.c line #196)
[Trace] (3.255, +9)      lv_mem_realloc: allocated at 0x20005714        (in lv_mem.c line #215)
[Trace] (3.263, +8)      lv_mem_realloc: reallocating 0x20005714 with 24 size   (in lv_mem.c line #196)
[Trace] (3.271, +8)      lv_mem_realloc: allocated at 0x20005714        (in lv_mem.c line #215)
[Trace] (3.279, +8)      lv_mem_realloc: reallocating 0x20005714 with 30 size   (in lv_mem.c line #196)
[Trace] (3.287, +8)      lv_mem_realloc: allocated at 0x20005714        (in lv_mem.c line #215)
[Trace] (3.295, +8)      lv_mem_realloc: reallocating 0x20005714 with 36 size   (in lv_mem.c line #196)
[Trace] (3.303, +8)      lv_mem_realloc: allocated at 0x20005714        (in lv_mem.c line #215)
[Trace] (3.311, +8)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (3.318, +7)      lv_mem_alloc: allocated at 0x2000573c  (in lv_mem.c line #160)
[Trace] (3.325, +7)      lv_mem_realloc: reallocating 0x2000573c with 18 size   (in lv_mem.c line #196)
[Trace] (3.334, +9)      lv_mem_realloc: allocated at 0x2000573c        (in lv_mem.c line #215)
[Trace] (3.341, +7)      lv_mem_realloc: reallocating 0x2000573c with 24 size   (in lv_mem.c line #196)
[Trace] (3.350, +9)      lv_mem_realloc: allocated at 0x2000573c        (in lv_mem.c line #215)
[Trace] (3.358, +8)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (3.365, +7)      lv_mem_alloc: allocated at 0x20005758  (in lv_mem.c line #160)
[Trace] (3.372, +7)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (3.379, +7)      lv_mem_alloc: allocated at 0x20005768  (in lv_mem.c line #160)
[Trace] (3.386, +7)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (3.393, +7)      lv_mem_alloc: allocated at 0x20005778  (in lv_mem.c line #160)
[Trace] (3.401, +8)      lv_mem_realloc: reallocating 0x20005778 with 18 size   (in lv_mem.c line #196)
[Trace] (3.409, +8)      lv_mem_realloc: allocated at 0x20005778        (in lv_mem.c line #215)
[Trace] (3.417, +8)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (3.424, +7)      lv_mem_alloc: allocated at 0x20005790  (in lv_mem.c line #160)
[Trace] (3.431, +7)      lv_mem_realloc: reallocating 0x20005790 with 18 size   (in lv_mem.c line #196)
[Trace] (3.440, +9)      lv_mem_realloc: allocated at 0x20005790        (in lv_mem.c line #215)
[Trace] (3.447, +7)      lv_mem_realloc: reallocating 0x20005790 with 24 size   (in lv_mem.c line #196)
[Trace] (3.456, +9)      lv_mem_realloc: allocated at 0x20005790        (in lv_mem.c line #215)
[Trace] (3.463, +7)      lv_mem_realloc: reallocating 0x20005790 with 30 size   (in lv_mem.c line #196)
[Trace] (3.472, +9)      lv_mem_realloc: allocated at 0x20005790        (in lv_mem.c line #215)
[Trace] (3.479, +7)      lv_mem_realloc: reallocating 0x20005790 with 36 size   (in lv_mem.c line #196)
[Trace] (3.488, +9)      lv_mem_realloc: allocated at 0x20005790        (in lv_mem.c line #215)
[Trace] (3.495, +7)      lv_mem_realloc: reallocating 0x20005790 with 42 size   (in lv_mem.c line #196)
[Trace] (3.504, +9)      lv_mem_realloc: allocated at 0x20005790        (in lv_mem.c line #215)
[Trace] (3.512, +8)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (3.519, +7)      lv_mem_alloc: allocated at 0x200057c0  (in lv_mem.c line #160)
[Trace] (3.526, +7)      lv_mem_realloc: reallocating 0x200057c0 with 18 size   (in lv_mem.c line #196)
[Trace] (3.535, +9)      lv_mem_realloc: allocated at 0x200057c0        (in lv_mem.c line #215)
[Trace] (3.542, +7)      lv_mem_realloc: reallocating 0x200057c0 with 24 size   (in lv_mem.c line #196)
[Trace] (3.551, +9)      lv_mem_realloc: allocated at 0x200057c0        (in lv_mem.c line #215)
[Trace] (3.558, +7)      lv_mem_realloc: reallocating 0x200057c0 with 30 size   (in lv_mem.c line #196)
[Trace] (3.567, +9)      lv_mem_realloc: allocated at 0x200057c0        (in lv_mem.c line #215)
[Trace] (3.574, +7)      lv_mem_realloc: reallocating 0x200057c0 with 36 size   (in lv_mem.c line #196)
[Trace] (3.583, +9)      lv_mem_realloc: allocated at 0x200057c0        (in lv_mem.c line #215)
[Trace] (3.590, +7)      lv_mem_realloc: reallocating 0x200057c0 with 42 size   (in lv_mem.c line #196)
[Trace] (3.599, +9)      lv_mem_realloc: allocated at 0x200057c0        (in lv_mem.c line #215)
[Trace] (3.607, +8)      lv_mem_realloc: reallocating 0x200057c0 with 48 size   (in lv_mem.c line #196)
[Trace] (3.615, +8)      lv_mem_realloc: allocated at 0x200057c0        (in lv_mem.c line #215)
[Trace] (3.623, +8)      lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (3.630, +7)      lv_mem_alloc: allocated at 0x200057f4  (in lv_mem.c line #160)
[Trace] (3.637, +7)      lv_mem_realloc: reallocating 0x200057f4 with 18 size   (in lv_mem.c line #196)
[Trace] (3.646, +9)      lv_mem_realloc: allocated at 0x200057f4        (in lv_mem.c line #215)
[Trace] (3.653, +7)      lv_mem_realloc: reallocating 0x200057f4 with 24 size   (in lv_mem.c line #196)
[Trace] (3.662, +9)      lv_mem_realloc: allocated at 0x200057f4        (in lv_mem.c line #215)
[Trace] (3.669, +7)      lv_mem_realloc: reallocating 0x200057f4 with 30 size   (in lv_mem.c line #196)
[Trace] (3.678, +9)      lv_mem_realloc: allocated at 0x200057f4        (in lv_mem.c line #215)
[Trace] (3.685, +7)      lv_mem_realloc: reallocating 0x200057f4 with 36 size   (in lv_mem.c line #196)
[Trace] (3.694, +9)      lv_mem_realloc: allocated at 0x200057f4        (in lv_mem.c line #215)
[Trace] (3.702, +8)      lv_mem_realloc: reallocating 0x200057f4 with 42 size   (in lv_mem.c line #196)
[Trace] (3.710, +8)      lv_mem_realloc: allocated at 0x200057f4        (in lv_mem.c line #215)
[Info]  (3.718, +8)      lv_obj_create: begin   (in lv_obj.c line #206)
[Trace] (3.724, +6)      lv_obj_class_create_obj: Creating object with 0x80322a4 class on 0 parent      (in lv_obj_class.c line #45)
[Trace] (3.734, +10)     lv_mem_alloc: allocating 36 bytes      (in lv_mem.c line #127)
[Trace] (3.741, +7)      lv_mem_alloc: allocated at 0x20005824  (in lv_mem.c line #160)
[Trace] (3.749, +8)      lv_obj_class_create_obj: creating a screen     (in lv_obj_class.c line #55)
[Trace] (3.757, +8)      lv_mem_alloc: allocating 4 bytes       (in lv_mem.c line #127)
[Trace] (3.764, +7)      lv_mem_alloc: allocated at 0x2000584c  (in lv_mem.c line #160)
[Trace] (3.771, +7)      lv_mem_realloc: reallocating 0 with 8 size     (in lv_mem.c line #196)
[Trace] (3.779, +8)      lv_mem_realloc: allocated at 0x2000585c        (in lv_mem.c line #215)
[Trace] (3.786, +7)      lv_mem_realloc: reallocating 0x2000585c with 16 size   (in lv_mem.c line #196)
[Trace] (3.795, +9)      lv_mem_realloc: allocated at 0x2000585c        (in lv_mem.c line #215)
[Trace] (3.803, +8)      lv_mem_realloc: reallocating 0x2000585c with 24 size   (in lv_mem.c line #196)
[Trace] (3.811, +8)      lv_mem_realloc: allocated at 0x2000585c        (in lv_mem.c line #215)
[Trace] (3.819, +8)      lv_obj_constructor: begin      (in lv_obj.c line #403)
[Trace] (3.825, +6)      lv_obj_constructor: finished   (in lv_obj.c line #428)
[Trace] (3.832, +7)      event_send_core: Sending event 42 to 0x20005824 with 0 param   (in lv_event.c line #428)
[Trace] (3.841, +9)      event_send_core: Sending event 19 to 0x20005824 with 0x2007fd1e param  (in lv_event.c line #428)
[Info]  (3.851, +10)     lv_obj_create: begin   (in lv_obj.c line #206)
[Trace] (3.857, +6)      lv_obj_class_create_obj: Creating object with 0x80322a4 class on 0 parent      (in lv_obj_class.c line #45)
[Trace] (3.868, +11)     lv_mem_alloc: allocating 36 bytes      (in lv_mem.c line #127)
[Trace] (3.875, +7)      lv_mem_alloc: allocated at 0x20005878  (in lv_mem.c line #160)
[Trace] (3.883, +8)      lv_obj_class_create_obj: creating a screen     (in lv_obj_class.c line #55)
[Trace] (3.891, +8)      lv_mem_realloc: reallocating 0x2000584c with 8 size    (in lv_mem.c line #196)
[Trace] (3.899, +8)      lv_mem_realloc: allocated at 0x2000584c        (in lv_mem.c line #215)
[Trace] (3.907, +8)      lv_mem_realloc: reallocating 0 with 8 size     (in lv_mem.c line #196)
[Trace] (3.915, +8)      lv_mem_realloc: allocated at 0x200058a0        (in lv_mem.c line #215)
[Trace] (3.922, +7)      lv_mem_realloc: reallocating 0x200058a0 with 16 size   (in lv_mem.c line #196)
[Trace] (3.931, +9)      lv_mem_realloc: allocated at 0x200058a0        (in lv_mem.c line #215)
[Trace] (3.938, +7)      lv_mem_realloc: reallocating 0x200058a0 with 24 size   (in lv_mem.c line #196)
[Trace] (3.947, +9)      lv_mem_realloc: allocated at 0x200058a0        (in lv_mem.c line #215)
[Trace] (3.954, +7)      lv_obj_constructor: begin      (in lv_obj.c line #403)
[Trace] (3.961, +7)      lv_obj_constructor: finished   (in lv_obj.c line #428)
[Trace] (3.967, +6)      event_send_core: Sending event 42 to 0x20005878 with 0 param   (in lv_event.c line #428)
[Trace] (3.977, +10)     event_send_core: Sending event 19 to 0x20005878 with 0x2007fd1e param  (in lv_event.c line #428)
[Info]  (3.987, +10)     lv_obj_create: begin   (in lv_obj.c line #206)
[Trace] (3.993, +6)      lv_obj_class_create_obj: Creating object with 0x80322a4 class on 0 parent      (in lv_obj_class.c line #45)
[Trace] (4.004, +11)     lv_mem_alloc: allocating 36 bytes      (in lv_mem.c line #127)
[Trace] (4.011, +7)      lv_mem_alloc: allocated at 0x200058bc  (in lv_mem.c line #160)
[Trace] (4.018, +7)      lv_obj_class_create_obj: creating a screen     (in lv_obj_class.c line #55)
[Trace] (4.026, +8)      lv_mem_realloc: reallocating 0x2000584c with 12 size   (in lv_mem.c line #196)
[Trace] (4.035, +9)      lv_mem_realloc: allocated at 0x2000584c        (in lv_mem.c line #215)
[Trace] (4.042, +7)      lv_mem_realloc: reallocating 0 with 8 size     (in lv_mem.c line #196)
[Trace] (4.050, +8)      lv_mem_realloc: allocated at 0x200058e4        (in lv_mem.c line #215)
[Trace] (4.058, +8)      lv_mem_realloc: reallocating 0x200058e4 with 16 size   (in lv_mem.c line #196)
[Trace] (4.066, +8)      lv_mem_realloc: allocated at 0x200058e4        (in lv_mem.c line #215)
[Trace] (4.074, +8)      lv_mem_realloc: reallocating 0x200058e4 with 24 size   (in lv_mem.c line #196)
[Trace] (4.083, +9)      lv_mem_realloc: allocated at 0x200058e4        (in lv_mem.c line #215)
[Trace] (4.090, +7)      lv_obj_constructor: begin      (in lv_obj.c line #403)
[Trace] (4.096, +6)      lv_obj_constructor: finished   (in lv_obj.c line #428)
[Trace] (4.103, +7)      event_send_core: Sending event 42 to 0x200058bc with 0 param   (in lv_event.c line #428)
[Trace] (4.112, +9)      event_send_core: Sending event 19 to 0x200058bc with 0x2007fd1e param  (in lv_event.c line #428)
[Trace] (4.123, +11)     lv_mem_realloc: reallocating 0x200058a0 with 16 size   (in lv_mem.c line #196)
[Trace] (4.131, +8)      lv_mem_realloc: allocated at 0x200058a0        (in lv_mem.c line #215)
[Trace] (4.139, +8)      lv_mem_realloc: reallocating 0x200058a0 with 8 size    (in lv_mem.c line #196)
[Trace] (4.147, +8)      lv_mem_realloc: allocated at 0x200058a0        (in lv_mem.c line #215)
[Trace] (4.155, +8)      lv_mem_realloc: reallocating 0x200058a0 with 0 size    (in lv_mem.c line #196)
[Trace] (4.163, +8)      lv_mem_realloc: using zero_mem         (in lv_mem.c line #198)
[Trace] (4.170, +7)      lv_mem_free: freeing 0x200058a0        (in lv_mem.c line #171)
[Trace] (4.177, +7)      event_send_core: Sending event 42 to 0x20005878 with 0 param   (in lv_event.c line #428)
[Trace] (4.187, +10)     event_send_core: Sending event 19 to 0x20005878 with 0x2007fd3e param  (in lv_event.c line #428)
[Trace] (4.197, +10)     lv_mem_realloc: reallocating 0x200058e4 with 16 size   (in lv_mem.c line #196)
[Trace] (4.206, +9)      lv_mem_realloc: allocated at 0x200058e4        (in lv_mem.c line #215)
[Trace] (4.213, +7)      lv_mem_realloc: reallocating 0x200058e4 with 8 size    (in lv_mem.c line #196)
[Trace] (4.222, +9)      lv_mem_realloc: allocated at 0x200058e4        (in lv_mem.c line #215)
[Trace] (4.229, +7)      lv_mem_realloc: reallocating 0x200058e4 with 0 size    (in lv_mem.c line #196)
[Trace] (4.238, +9)      lv_mem_realloc: using zero_mem         (in lv_mem.c line #198)
[Trace] (4.244, +6)      lv_mem_free: freeing 0x200058e4        (in lv_mem.c line #171)
[Trace] (4.251, +7)      event_send_core: Sending event 42 to 0x200058bc with 0 param   (in lv_event.c line #428)
[Trace] (4.261, +10)     event_send_core: Sending event 19 to 0x200058bc with 0x2007fd3e param  (in lv_event.c line #428)
[Trace] (4.271, +10)     lv_mem_alloc: allocating 28 bytes      (in lv_mem.c line #127)
[Trace] (4.278, +7)      lv_mem_alloc: allocated at 0x200058e4  (in lv_mem.c line #160)
[Trace] (4.286, +8)      lv_mem_alloc: allocating 28 bytes      (in lv_mem.c line #127)
[Trace] (4.293, +7)      lv_mem_alloc: allocated at 0x20005904  (in lv_mem.c line #160)
[Trace] (4.300, +7)      lv_mem_alloc: allocating 100 bytes     (in lv_mem.c line #127)
[Trace] (4.307, +7)      lv_mem_alloc: allocated at 0x20005924  (in lv_mem.c line #160)
[Trace] (4.314, +7)      lv_mem_alloc: allocating 32 bytes      (in lv_mem.c line #127)
[Trace] (4.321, +7)      lv_mem_alloc: allocated at 0x2000598c  (in lv_mem.c line #160)
flash chip initialised
f_mount successful
[Trace] (4.429, +108)    lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (4.438, +9)      lv_mem_alloc: allocated at 0x200058a0  (in lv_mem.c line #160)
[Info]  (4.445, +7)      lv_img_create: begin   (in lv_img.c line #60)
[Trace] (4.451, +6)      lv_obj_class_create_obj: Creating object with 0x8037918 class on 0x20005824 parent     (in lv_obj_class.c line #45)
[Trace] (4.463, +12)     lv_mem_alloc: allocating 60 bytes      (in lv_mem.c line #127)
[Trace] (4.470, +7)      lv_mem_alloc: allocated at 0x200059b0  (in lv_mem.c line #160)
[Trace] (4.477, +7)      lv_obj_class_create_obj: creating normal object        (in lv_obj_class.c line #82)
[Trace] (4.486, +9)      lv_mem_alloc: allocating 28 bytes      (in lv_mem.c line #127)
[Trace] (4.493, +7)      lv_mem_alloc: allocated at 0x200059f0  (in lv_mem.c line #160)
[Trace] (4.500, +7)      lv_mem_alloc: allocating 4 bytes       (in lv_mem.c line #127)
[Trace] (4.507, +7)      lv_mem_alloc: allocated at 0x20005a10  (in lv_mem.c line #160)
[Trace] (4.514, +7)      lv_obj_constructor: begin      (in lv_obj.c line #403)
[Trace] (4.520, +6)      lv_obj_constructor: finished   (in lv_obj.c line #428)
[Trace] (4.527, +7)      lv_img_constructor: begin      (in lv_img.c line #391)
[Trace] (4.533, +6)      lv_img_constructor: finished   (in lv_img.c line #412)
[Trace] (4.540, +7)      event_send_core: Sending event 42 to 0x200059b0 with 0 param   (in lv_event.c line #428)
[Trace] (4.549, +9)      event_send_core: Sending event 19 to 0x200059b0 with 0x2007fc5e param  (in lv_event.c line #428)
[Trace] (4.560, +11)     event_send_core: Sending event 19 to 0x200059b0 with 0x2007fd46 param  (in lv_event.c line #428)
[Trace] (4.570, +10)     event_send_core: Sending event 34 to 0x20005824 with 0x200059b0 param  (in lv_event.c line #428)
[Trace] (4.580, +10)     event_send_core: Sending event 35 to 0x20005824 with 0x200059b0 param  (in lv_event.c line #428)
[Trace] (4.591, +11)     lv_mem_realloc: reallocating 0 with 8 size     (in lv_mem.c line #196)
[Trace] (4.599, +8)      lv_mem_realloc: allocated at 0x20005a20        (in lv_mem.c line #215)
[Trace] (4.606, +7)      lv_mem_alloc: allocating 8 bytes       (in lv_mem.c line #127)
[Trace] (4.613, +7)      lv_mem_alloc: allocated at 0x20005a30  (in lv_mem.c line #160)
[Trace] (4.620, +7)      event_send_core: Sending event 42 to 0x200059b0 with 0 param   (in lv_event.c line #428)
[Trace] (4.630, +10)     event_send_core: Sending event 19 to 0x200059b0 with 0x2007fc6e param  (in lv_event.c line #428)
[Trace] (4.640, +10)     lv_mem_alloc: allocating 12 bytes      (in lv_mem.c line #127)
[Trace] (4.647, +7)      lv_mem_alloc: allocated at 0x20005a40  (in lv_mem.c line #160)
[Trace] (4.655, +8)      event_send_core: Sending event 42 to 0x200059b0 with 0 param   (in lv_event.c line #428)
[Trace] (4.664, +9)      event_send_core: Sending event 19 to 0x200059b0 with 0x2007fc56 param  (in lv_event.c line #428)
[Trace] (4.674, +10)     lv_mem_realloc: reallocating 0x20005a40 with 18 size   (in lv_mem.c line #196)
[Trace] (4.683, +9)      lv_mem_realloc: allocated at 0x20005a40        (in lv_mem.c line #215)
[Trace] (4.691, +8)      event_send_core: Sending event 42 to 0x200059b0 with 0 param   (in lv_event.c line #428)
[Trace] (4.700, +9)      event_send_core: Sending event 19 to 0x200059b0 with 0x2007fc66 param  (in lv_event.c line #428)
[Trace] (4.710, +10)     lv_mem_alloc: allocating 552 bytes     (in lv_mem.c line #127)
[Trace] (4.718, +8)      lv_mem_alloc: allocated at 0x20005a58  (in lv_mem.c line #160)
[Trace] (4.725, +7)      lv_mem_alloc: allocating 16 bytes      (in lv_mem.c line #127)
[Trace] (4.732, +7)      lv_mem_alloc: allocated at 0x20005c84  (in lv_mem.c line #160)
[Trace] (4.740, +8)      lv_mem_alloc: allocating 1024 bytes    (in lv_mem.c line #127)
[Trace] (4.747, +7)      lv_mem_alloc: allocated at 0x20005c98  (in lv_mem.c line #160)
[Trace] (4.755, +8)      lv_mem_free: freeing 0x20005a58        (in lv_mem.c line #171)
[Trace] (4.761, +6)      lv_mem_free: freeing 0x20005c98        (in lv_mem.c line #171)
[Trace] (4.768, +7)      lv_mem_free: freeing 0x20005c84        (in lv_mem.c line #171)
[Trace] (4.775, +7)      lv_mem_alloc: allocating 14 bytes      (in lv_mem.c line #127)
[Trace] (4.782, +7)      lv_mem_alloc: allocated at 0x20005a58  (in lv_mem.c line #160)
[Trace] (4.789, +7)      lv_timer_handler: begin        (in lv_timer.c line #69)
[Trace] (4.795, +6)      lv_timer_exec: calling timer callback: 0x8005b01       (in lv_timer.c line #312)
[Trace] (4.804, +9)      lv_indev_read_timer_cb: begin  (in lv_indev.c line #66)
[Trace] (4.811, +7)      _lv_indev_read: calling indev_read_cb  (in lv_hal_indev.c line #185)
[Trace] (4.818, +7)      lv_indev_read_timer_cb: finished       (in lv_indev.c line #120)
[Trace] (4.826, +8)      lv_timer_exec: timer callback 0x8005b01 finished       (in lv_timer.c line #314)
[Trace] (4.834, +8)      lv_timer_exec: calling timer callback: 0x800cc99       (in lv_timer.c line #312)
[Trace] (4.842, +8)      _lv_disp_refr_timer: begin     (in lv_refr.c line #288)
[Info]  (4.849, +7)      lv_obj_update_layout: Layout update begin      (in lv_obj_pos.c line #314)
[Trace] (4.857, +8)      event_send_core: Sending event 44 to 0x200059b0 with 0x2007feac param  (in lv_event.c line #428)
[Trace] (4.867, +10)     event_send_core: Sending event 44 to 0x200059b0 with 0x2007feac param  (in lv_event.c line #428)
[Trace] (4.878, +11)     event_send_core: Sending event 41 to 0x200059b0 with 0x2007fed8 param  (in lv_event.c line #428)
[Trace] (4.888, +10)     event_send_core: Sending event 34 to 0x20005824 with 0x200059b0 param  (in lv_event.c line #428)
[Trace] (4.898, +10)     event_send_core: Sending event 44 to 0x200059b0 with 0x2007fe6c param  (in lv_event.c line #428)
[Trace] (4.909, +11)     event_send_core: Sending event 44 to 0x200059b0 with 0x2007fe6c param  (in lv_event.c line #428)
[Trace] (4.919, +10)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fe04 param  (in lv_event.c line #428)
[Trace] (4.929, +10)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fe04 param  (in lv_event.c line #428)
[Trace] (4.940, +11)     event_send_core: Sending event 19 to 0x200059b0 with 0x2007fea6 param  (in lv_event.c line #428)
[Trace] (4.950, +10)     event_send_core: Sending event 34 to 0x20005824 with 0x200059b0 param  (in lv_event.c line #428)
[Trace] (4.961, +11)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fe34 param  (in lv_event.c line #428)
[Trace] (4.971, +10)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fe34 param  (in lv_event.c line #428)
[Trace] (4.981, +10)     lv_obj_update_layout: Layout update end        (in lv_obj_pos.c line #317)
[Info]  (4.989, +8)      lv_obj_update_layout: Layout update begin      (in lv_obj_pos.c line #314)
[Trace] (4.997, +8)      event_send_core: Sending event 44 to 0x200059b0 with 0x2007feac param  (in lv_event.c line #428)
[Trace] (5.008, +11)     event_send_core: Sending event 44 to 0x200059b0 with 0x2007feac param  (in lv_event.c line #428)
[Trace] (5.018, +10)     lv_obj_update_layout: Layout update end        (in lv_obj_pos.c line #317)
[Info]  (5.026, +8)      lv_obj_update_layout: Layout update begin      (in lv_obj_pos.c line #314)
[Trace] (5.034, +8)      lv_obj_update_layout: Layout update end        (in lv_obj_pos.c line #317)
[Info]  (5.042, +8)      lv_obj_update_layout: Layout update begin      (in lv_obj_pos.c line #314)
[Trace] (5.050, +8)      lv_obj_update_layout: Layout update end        (in lv_obj_pos.c line #317)
[Trace] (5.058, +8)      event_send_core: Sending event 18 to 0x20005824 with 0x2007fe80 param  (in lv_event.c line #428)
[Trace] (5.068, +10)     event_send_core: Sending event 20 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.078, +10)     event_send_core: Sending event 21 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.089, +11)     event_send_core: Sending event 26 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (5.099, +10)     event_send_core: Sending event 27 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (5.109, +10)     event_send_core: Sending event 22 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.120, +11)     event_send_core: Sending event 23 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.130, +10)     event_send_core: Sending event 24 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.141, +11)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (5.151, +10)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (5.161, +10)     event_send_core: Sending event 25 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.172, +11)     event_send_core: Sending event 20 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.182, +10)     event_send_core: Sending event 21 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.192, +10)     event_send_core: Sending event 26 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (5.203, +11)     event_send_core: Sending event 27 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (5.213, +10)     event_send_core: Sending event 22 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.224, +11)     event_send_core: Sending event 23 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.234, +10)     event_send_core: Sending event 24 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.244, +10)     event_send_core: Sending event 25 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.255, +11)     event_send_core: Sending event 20 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.265, +10)     event_send_core: Sending event 21 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.275, +10)     event_send_core: Sending event 26 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (5.286, +11)     event_send_core: Sending event 27 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (5.296, +10)     event_send_core: Sending event 22 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.307, +11)     event_send_core: Sending event 23 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.317, +10)     event_send_core: Sending event 24 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.327, +10)     event_send_core: Sending event 25 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.338, +11)     call_flush_cb: Calling flush_cb on (0;0)(799;9) area with 0x200006a8 image pointer     (in lv_refr.c line #1228)
[Trace] (5.351, +13)     event_send_core: Sending event 18 to 0x20005824 with 0x2007fe80 param  (in lv_event.c line #428)
[Trace] (5.361, +10)     event_send_core: Sending event 20 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.372, +11)     event_send_core: Sending event 21 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.382, +10)     event_send_core: Sending event 26 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (5.393, +11)     event_send_core: Sending event 27 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (5.403, +10)     event_send_core: Sending event 22 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.413, +10)     event_send_core: Sending event 23 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.424, +11)     event_send_core: Sending event 24 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.434, +10)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (5.444, +10)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (5.455, +11)     event_send_core: Sending event 25 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.465, +10)     event_send_core: Sending event 20 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.476, +11)     event_send_core: Sending event 21 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.486, +10)     event_send_core: Sending event 26 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (5.496, +10)     event_send_core: Sending event 27 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (5.507, +11)     event_send_core: Sending event 22 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.517, +10)     event_send_core: Sending event 23 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.527, +10)     event_send_core: Sending event 24 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.538, +11)     event_send_core: Sending event 25 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.548, +10)     event_send_core: Sending event 20 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.559, +11)     event_send_core: Sending event 21 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.569, +10)     event_send_core: Sending event 26 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (5.579, +10)     event_send_core: Sending event 27 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (5.590, +11)     event_send_core: Sending event 22 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.600, +10)     event_send_core: Sending event 23 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.611, +11)     event_send_core: Sending event 24 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.621, +10)     event_send_core: Sending event 25 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.631, +10)     call_flush_cb: Calling flush_cb on (0;10)(799;19) area with 0x200006a8 image pointer   (in lv_refr.c line #1228)
[Trace] (5.645, +14)     event_send_core: Sending event 18 to 0x20005824 with 0x2007fe80 param  (in lv_event.c line #428)
[Trace] (5.655, +10)     event_send_core: Sending event 20 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.665, +10)     event_send_core: Sending event 21 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.676, +11)     event_send_core: Sending event 26 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (5.686, +10)     event_send_core: Sending event 27 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (5.697, +11)     event_send_core: Sending event 22 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.707, +10)     event_send_core: Sending event 23 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.717, +10)     event_send_core: Sending event 24 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.728, +11)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (5.738, +10)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (5.749, +11)     event_send_core: Sending event 25 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.759, +10)     event_send_core: Sending event 20 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.769, +10)     event_send_core: Sending event 21 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.780, +11)     event_send_core: Sending event 26 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (5.790, +10)     event_send_core: Sending event 27 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (5.800, +10)     event_send_core: Sending event 22 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.811, +11)     event_send_core: Sending event 23 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.821, +10)     event_send_core: Sending event 24 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.832, +11)     event_send_core: Sending event 25 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.842, +10)     event_send_core: Sending event 20 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.852, +10)     event_send_core: Sending event 21 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.863, +11)     event_send_core: Sending event 26 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (5.873, +10)     event_send_core: Sending event 27 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (5.883, +10)     event_send_core: Sending event 22 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.894, +11)     event_send_core: Sending event 23 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.904, +10)     event_send_core: Sending event 24 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.915, +11)     event_send_core: Sending event 25 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.925, +10)     call_flush_cb: Calling flush_cb on (0;20)(799;29) area with 0x200006a8 image pointer   (in lv_refr.c line #1228)
[Trace] (5.938, +13)     event_send_core: Sending event 18 to 0x20005824 with 0x2007fe80 param  (in lv_event.c line #428)
[Trace] (5.949, +11)     event_send_core: Sending event 20 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.959, +10)     event_send_core: Sending event 21 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (5.970, +11)     event_send_core: Sending event 26 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (5.980, +10)     event_send_core: Sending event 27 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (5.990, +10)     event_send_core: Sending event 22 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.001, +11)     event_send_core: Sending event 23 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.011, +10)     event_send_core: Sending event 24 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.021, +10)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (6.032, +11)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (6.042, +10)     event_send_core: Sending event 25 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.053, +11)     event_send_core: Sending event 20 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.063, +10)     event_send_core: Sending event 21 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.073, +10)     event_send_core: Sending event 26 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (6.084, +11)     event_send_core: Sending event 27 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (6.094, +10)     event_send_core: Sending event 22 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.104, +10)     event_send_core: Sending event 23 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.115, +11)     event_send_core: Sending event 24 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.125, +10)     event_send_core: Sending event 25 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.136, +11)     event_send_core: Sending event 20 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.146, +10)     event_send_core: Sending event 21 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.156, +10)     event_send_core: Sending event 26 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (6.167, +11)     event_send_core: Sending event 27 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (6.177, +10)     event_send_core: Sending event 22 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.188, +11)     event_send_core: Sending event 23 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.198, +10)     event_send_core: Sending event 24 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.208, +10)     event_send_core: Sending event 25 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.219, +11)     call_flush_cb: Calling flush_cb on (0;30)(799;39) area with 0x200006a8 image pointer   (in lv_refr.c line #1228)
[Trace] (6.232, +13)     event_send_core: Sending event 18 to 0x20005824 with 0x2007fe80 param  (in lv_event.c line #428)
[Trace] (6.242, +10)     event_send_core: Sending event 20 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.253, +11)     event_send_core: Sending event 21 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.263, +10)     event_send_core: Sending event 26 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (6.274, +11)     event_send_core: Sending event 27 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (6.284, +10)     event_send_core: Sending event 22 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.294, +10)     event_send_core: Sending event 23 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.305, +11)     event_send_core: Sending event 24 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.315, +10)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (6.326, +11)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (6.336, +10)     event_send_core: Sending event 25 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.346, +10)     event_send_core: Sending event 20 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.357, +11)     event_send_core: Sending event 21 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.367, +10)     event_send_core: Sending event 26 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (6.377, +10)     event_send_core: Sending event 27 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (6.388, +11)     event_send_core: Sending event 22 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.398, +10)     event_send_core: Sending event 23 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.409, +11)     event_send_core: Sending event 24 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.419, +10)     event_send_core: Sending event 25 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.429, +10)     event_send_core: Sending event 20 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.440, +11)     event_send_core: Sending event 21 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.450, +10)     event_send_core: Sending event 26 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (6.460, +10)     event_send_core: Sending event 27 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (6.471, +11)     event_send_core: Sending event 22 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.481, +10)     event_send_core: Sending event 23 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.492, +11)     event_send_core: Sending event 24 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.502, +10)     event_send_core: Sending event 25 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.512, +10)     call_flush_cb: Calling flush_cb on (0;40)(799;49) area with 0x200006a8 image pointer   (in lv_refr.c line #1228)
[Trace] (6.526, +14)     event_send_core: Sending event 18 to 0x20005824 with 0x2007fe80 param  (in lv_event.c line #428)
[Trace] (6.536, +10)     event_send_core: Sending event 20 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.547, +11)     event_send_core: Sending event 21 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.557, +10)     event_send_core: Sending event 26 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (6.567, +10)     event_send_core: Sending event 27 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (6.578, +11)     event_send_core: Sending event 22 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.588, +10)     event_send_core: Sending event 23 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.598, +10)     event_send_core: Sending event 24 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.609, +11)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (6.619, +10)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (6.630, +11)     event_send_core: Sending event 25 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.640, +10)     event_send_core: Sending event 20 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.650, +10)     event_send_core: Sending event 21 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.661, +11)     event_send_core: Sending event 26 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (6.671, +10)     event_send_core: Sending event 27 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (6.681, +10)     event_send_core: Sending event 22 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.692, +11)     event_send_core: Sending event 23 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.702, +10)     event_send_core: Sending event 24 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.713, +11)     event_send_core: Sending event 25 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.723, +10)     event_send_core: Sending event 20 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.733, +10)     event_send_core: Sending event 21 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.744, +11)     event_send_core: Sending event 26 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (6.754, +10)     event_send_core: Sending event 27 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (6.765, +11)     event_send_core: Sending event 22 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.775, +10)     event_send_core: Sending event 23 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.785, +10)     event_send_core: Sending event 24 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.796, +11)     event_send_core: Sending event 25 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.806, +10)     call_flush_cb: Calling flush_cb on (0;50)(799;59) area with 0x200006a8 image pointer   (in lv_refr.c line #1228)
[Trace] (6.819, +13)     event_send_core: Sending event 18 to 0x20005824 with 0x2007fe80 param  (in lv_event.c line #428)
[Trace] (6.830, +11)     event_send_core: Sending event 20 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.840, +10)     event_send_core: Sending event 21 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.851, +11)     event_send_core: Sending event 26 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (6.861, +10)     event_send_core: Sending event 27 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (6.871, +10)     event_send_core: Sending event 22 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.882, +11)     event_send_core: Sending event 23 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.892, +10)     event_send_core: Sending event 24 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.903, +11)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (6.913, +10)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (6.923, +10)     event_send_core: Sending event 25 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.934, +11)     event_send_core: Sending event 20 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.944, +10)     event_send_core: Sending event 21 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.954, +10)     event_send_core: Sending event 26 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (6.965, +11)     event_send_core: Sending event 27 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (6.975, +10)     event_send_core: Sending event 22 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.986, +11)     event_send_core: Sending event 23 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (6.996, +10)     event_send_core: Sending event 24 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.006, +10)     event_send_core: Sending event 25 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.017, +11)     event_send_core: Sending event 20 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.027, +10)     event_send_core: Sending event 21 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.037, +10)     event_send_core: Sending event 26 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (7.048, +11)     event_send_core: Sending event 27 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (7.058, +10)     event_send_core: Sending event 22 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.069, +11)     event_send_core: Sending event 23 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.079, +10)     event_send_core: Sending event 24 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.089, +10)     event_send_core: Sending event 25 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.100, +11)     call_flush_cb: Calling flush_cb on (0;60)(799;69) area with 0x200006a8 image pointer   (in lv_refr.c line #1228)
[Trace] (7.113, +13)     event_send_core: Sending event 18 to 0x20005824 with 0x2007fe80 param  (in lv_event.c line #428)
[Trace] (7.123, +10)     event_send_core: Sending event 20 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.134, +11)     event_send_core: Sending event 21 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.144, +10)     event_send_core: Sending event 26 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (7.155, +11)     event_send_core: Sending event 27 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (7.165, +10)     event_send_core: Sending event 22 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.175, +10)     event_send_core: Sending event 23 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.186, +11)     event_send_core: Sending event 24 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.196, +10)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (7.207, +11)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (7.217, +10)     event_send_core: Sending event 25 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.227, +10)     event_send_core: Sending event 20 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.238, +11)     event_send_core: Sending event 21 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.248, +10)     event_send_core: Sending event 26 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (7.258, +10)     event_send_core: Sending event 27 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (7.269, +11)     event_send_core: Sending event 22 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.279, +10)     event_send_core: Sending event 23 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.290, +11)     event_send_core: Sending event 24 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.300, +10)     event_send_core: Sending event 25 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.310, +10)     event_send_core: Sending event 20 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.321, +11)     event_send_core: Sending event 21 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.331, +10)     event_send_core: Sending event 26 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (7.342, +11)     event_send_core: Sending event 27 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (7.352, +10)     event_send_core: Sending event 22 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.362, +10)     event_send_core: Sending event 23 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.373, +11)     event_send_core: Sending event 24 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.383, +10)     event_send_core: Sending event 25 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.393, +10)     call_flush_cb: Calling flush_cb on (0;70)(799;79) area with 0x200006a8 image pointer   (in lv_refr.c line #1228)
[Trace] (7.407, +14)     event_send_core: Sending event 18 to 0x20005824 with 0x2007fe80 param  (in lv_event.c line #428)
[Trace] (7.417, +10)     event_send_core: Sending event 20 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.428, +11)     event_send_core: Sending event 21 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.438, +10)     event_send_core: Sending event 26 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (7.448, +10)     event_send_core: Sending event 27 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (7.459, +11)     event_send_core: Sending event 22 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.469, +10)     event_send_core: Sending event 23 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.479, +10)     event_send_core: Sending event 24 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.490, +11)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (7.500, +10)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (7.511, +11)     event_send_core: Sending event 25 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.521, +10)     event_send_core: Sending event 20 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.531, +10)     event_send_core: Sending event 21 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.542, +11)     event_send_core: Sending event 26 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (7.552, +10)     event_send_core: Sending event 27 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (7.563, +11)     event_send_core: Sending event 22 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.573, +10)     event_send_core: Sending event 23 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.583, +10)     event_send_core: Sending event 24 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.594, +11)     event_send_core: Sending event 25 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.604, +10)     event_send_core: Sending event 20 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.614, +10)     event_send_core: Sending event 21 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.625, +11)     event_send_core: Sending event 26 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (7.635, +10)     event_send_core: Sending event 27 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (7.646, +11)     event_send_core: Sending event 22 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.656, +10)     event_send_core: Sending event 23 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.666, +10)     event_send_core: Sending event 24 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.677, +11)     event_send_core: Sending event 25 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.687, +10)     call_flush_cb: Calling flush_cb on (0;80)(799;89) area with 0x200006a8 image pointer   (in lv_refr.c line #1228)
[Trace] (7.700, +13)     event_send_core: Sending event 18 to 0x20005824 with 0x2007fe80 param  (in lv_event.c line #428)
[Trace] (7.711, +11)     event_send_core: Sending event 20 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.721, +10)     event_send_core: Sending event 21 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.732, +11)     event_send_core: Sending event 26 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (7.742, +10)     event_send_core: Sending event 27 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (7.752, +10)     event_send_core: Sending event 22 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.763, +11)     event_send_core: Sending event 23 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.773, +10)     event_send_core: Sending event 24 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.784, +11)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (7.794, +10)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (7.804, +10)     event_send_core: Sending event 25 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.815, +11)     event_send_core: Sending event 20 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.825, +10)     event_send_core: Sending event 21 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.835, +10)     event_send_core: Sending event 26 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (7.846, +11)     event_send_core: Sending event 27 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (7.856, +10)     event_send_core: Sending event 22 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.867, +11)     event_send_core: Sending event 23 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.877, +10)     event_send_core: Sending event 24 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.887, +10)     event_send_core: Sending event 25 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.898, +11)     event_send_core: Sending event 20 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.908, +10)     event_send_core: Sending event 21 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.919, +11)     event_send_core: Sending event 26 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (7.929, +10)     event_send_core: Sending event 27 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (7.939, +10)     event_send_core: Sending event 22 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.950, +11)     event_send_core: Sending event 23 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.960, +10)     event_send_core: Sending event 24 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.970, +10)     event_send_core: Sending event 25 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (7.981, +11)     call_flush_cb: Calling flush_cb on (0;90)(799;99) area with 0x200006a8 image pointer   (in lv_refr.c line #1228)
[Trace] (7.994, +13)     event_send_core: Sending event 18 to 0x20005824 with 0x2007fe80 param  (in lv_event.c line #428)
[Trace] (8.005, +11)     event_send_core: Sending event 20 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.015, +10)     event_send_core: Sending event 21 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.025, +10)     event_send_core: Sending event 26 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (8.036, +11)     event_send_core: Sending event 27 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (8.046, +10)     event_send_core: Sending event 22 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.056, +10)     event_send_core: Sending event 23 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.067, +11)     event_send_core: Sending event 24 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.077, +10)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (8.088, +11)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (8.098, +10)     event_send_core: Sending event 25 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.108, +10)     event_send_core: Sending event 20 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.119, +11)     event_send_core: Sending event 21 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.129, +10)     event_send_core: Sending event 26 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (8.140, +11)     event_send_core: Sending event 27 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (8.150, +10)     event_send_core: Sending event 22 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.160, +10)     event_send_core: Sending event 23 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.171, +11)     event_send_core: Sending event 24 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.181, +10)     event_send_core: Sending event 25 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.191, +10)     event_send_core: Sending event 20 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.202, +11)     event_send_core: Sending event 21 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.212, +10)     event_send_core: Sending event 26 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (8.223, +11)     event_send_core: Sending event 27 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (8.233, +10)     event_send_core: Sending event 22 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.243, +10)     event_send_core: Sending event 23 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.254, +11)     event_send_core: Sending event 24 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.264, +10)     event_send_core: Sending event 25 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.274, +10)     call_flush_cb: Calling flush_cb on (0;100)(799;109) area with 0x200006a8 image pointer         (in lv_refr.c line #1228)
[Trace] (8.288, +14)     event_send_core: Sending event 18 to 0x20005824 with 0x2007fe80 param  (in lv_event.c line #428)
[Trace] (8.298, +10)     event_send_core: Sending event 20 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.309, +11)     event_send_core: Sending event 21 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.319, +10)     event_send_core: Sending event 26 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (8.330, +11)     event_send_core: Sending event 27 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (8.340, +10)     event_send_core: Sending event 22 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.350, +10)     event_send_core: Sending event 23 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.361, +11)     event_send_core: Sending event 24 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.371, +10)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (8.382, +11)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (8.392, +10)     event_send_core: Sending event 25 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.402, +10)     event_send_core: Sending event 20 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.413, +11)     event_send_core: Sending event 21 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.423, +10)     event_send_core: Sending event 26 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (8.433, +10)     event_send_core: Sending event 27 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (8.444, +11)     event_send_core: Sending event 22 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.454, +10)     event_send_core: Sending event 23 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.465, +11)     event_send_core: Sending event 24 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.475, +10)     event_send_core: Sending event 25 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.485, +10)     event_send_core: Sending event 20 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.496, +11)     event_send_core: Sending event 21 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.506, +10)     event_send_core: Sending event 26 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (8.516, +10)     event_send_core: Sending event 27 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (8.527, +11)     event_send_core: Sending event 22 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.537, +10)     event_send_core: Sending event 23 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.548, +11)     event_send_core: Sending event 24 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.558, +10)     event_send_core: Sending event 25 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.568, +10)     call_flush_cb: Calling flush_cb on (0;110)(799;119) area with 0x200006a8 image pointer         (in lv_refr.c line #1228)
[Trace] (8.582, +14)     event_send_core: Sending event 18 to 0x20005824 with 0x2007fe80 param  (in lv_event.c line #428)
[Trace] (8.592, +10)     event_send_core: Sending event 20 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.603, +11)     event_send_core: Sending event 21 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.613, +10)     event_send_core: Sending event 26 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (8.623, +10)     event_send_core: Sending event 27 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (8.634, +11)     event_send_core: Sending event 22 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.644, +10)     event_send_core: Sending event 23 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.655, +11)     event_send_core: Sending event 24 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.665, +10)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (8.675, +10)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (8.686, +11)     event_send_core: Sending event 25 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.696, +10)     event_send_core: Sending event 20 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.707, +11)     event_send_core: Sending event 21 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.717, +10)     event_send_core: Sending event 26 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (8.727, +10)     event_send_core: Sending event 27 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (8.738, +11)     event_send_core: Sending event 22 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.748, +10)     event_send_core: Sending event 23 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.758, +10)     event_send_core: Sending event 24 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.769, +11)     event_send_core: Sending event 25 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.779, +10)     event_send_core: Sending event 20 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.790, +11)     event_send_core: Sending event 21 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.800, +10)     event_send_core: Sending event 26 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (8.810, +10)     event_send_core: Sending event 27 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (8.821, +11)     event_send_core: Sending event 22 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.831, +10)     event_send_core: Sending event 23 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.841, +10)     event_send_core: Sending event 24 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.852, +11)     event_send_core: Sending event 25 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.862, +10)     call_flush_cb: Calling flush_cb on (0;120)(799;129) area with 0x200006a8 image pointer         (in lv_refr.c line #1228)
[Trace] (8.876, +14)     event_send_core: Sending event 18 to 0x20005824 with 0x2007fe80 param  (in lv_event.c line #428)
[Trace] (8.886, +10)     event_send_core: Sending event 20 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.897, +11)     event_send_core: Sending event 21 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.907, +10)     event_send_core: Sending event 26 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (8.917, +10)     event_send_core: Sending event 27 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (8.928, +11)     event_send_core: Sending event 22 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.938, +10)     event_send_core: Sending event 23 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.948, +10)     event_send_core: Sending event 24 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.959, +11)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (8.969, +10)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (8.980, +11)     event_send_core: Sending event 25 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (8.990, +10)     event_send_core: Sending event 20 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.000, +10)     event_send_core: Sending event 21 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.011, +11)     event_send_core: Sending event 26 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (9.021, +10)     event_send_core: Sending event 27 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (9.032, +11)     event_send_core: Sending event 22 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.042, +10)     event_send_core: Sending event 23 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.052, +10)     event_send_core: Sending event 24 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.063, +11)     event_send_core: Sending event 25 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.073, +10)     event_send_core: Sending event 20 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.083, +10)     event_send_core: Sending event 21 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.094, +11)     event_send_core: Sending event 26 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (9.104, +10)     event_send_core: Sending event 27 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (9.115, +11)     event_send_core: Sending event 22 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.125, +10)     event_send_core: Sending event 23 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.135, +10)     event_send_core: Sending event 24 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.146, +11)     event_send_core: Sending event 25 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.156, +10)     call_flush_cb: Calling flush_cb on (0;130)(799;139) area with 0x200006a8 image pointer         (in lv_refr.c line #1228)
[Trace] (9.170, +14)     event_send_core: Sending event 18 to 0x20005824 with 0x2007fe80 param  (in lv_event.c line #428)
[Trace] (9.180, +10)     event_send_core: Sending event 20 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.190, +10)     event_send_core: Sending event 21 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.201, +11)     event_send_core: Sending event 26 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (9.211, +10)     event_send_core: Sending event 27 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (9.222, +11)     event_send_core: Sending event 22 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.232, +10)     event_send_core: Sending event 23 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.242, +10)     event_send_core: Sending event 24 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.253, +11)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (9.263, +10)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (9.273, +10)     event_send_core: Sending event 25 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.284, +11)     event_send_core: Sending event 20 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.294, +10)     event_send_core: Sending event 21 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.305, +11)     event_send_core: Sending event 26 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (9.315, +10)     event_send_core: Sending event 27 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (9.325, +10)     event_send_core: Sending event 22 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.336, +11)     event_send_core: Sending event 23 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.346, +10)     event_send_core: Sending event 24 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.357, +11)     event_send_core: Sending event 25 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.367, +10)     event_send_core: Sending event 20 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.377, +10)     event_send_core: Sending event 21 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.388, +11)     event_send_core: Sending event 26 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (9.398, +10)     event_send_core: Sending event 27 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (9.408, +10)     event_send_core: Sending event 22 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.419, +11)     event_send_core: Sending event 23 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.429, +10)     event_send_core: Sending event 24 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.440, +11)     event_send_core: Sending event 25 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.450, +10)     call_flush_cb: Calling flush_cb on (0;140)(799;149) area with 0x200006a8 image pointer         (in lv_refr.c line #1228)
[Trace] (9.463, +13)     event_send_core: Sending event 18 to 0x20005824 with 0x2007fe80 param  (in lv_event.c line #428)
[Trace] (9.474, +11)     event_send_core: Sending event 20 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.484, +10)     event_send_core: Sending event 21 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.495, +11)     event_send_core: Sending event 26 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (9.505, +10)     event_send_core: Sending event 27 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (9.515, +10)     event_send_core: Sending event 22 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.526, +11)     event_send_core: Sending event 23 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.536, +10)     event_send_core: Sending event 24 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.547, +11)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (9.557, +10)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (9.567, +10)     event_send_core: Sending event 25 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.578, +11)     event_send_core: Sending event 20 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.588, +10)     event_send_core: Sending event 21 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.598, +10)     event_send_core: Sending event 26 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (9.609, +11)     event_send_core: Sending event 27 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (9.619, +10)     event_send_core: Sending event 22 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.630, +11)     event_send_core: Sending event 23 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.640, +10)     event_send_core: Sending event 24 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.650, +10)     event_send_core: Sending event 25 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.661, +11)     event_send_core: Sending event 20 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.671, +10)     event_send_core: Sending event 21 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.682, +11)     event_send_core: Sending event 26 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (9.692, +10)     event_send_core: Sending event 27 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (9.702, +10)     event_send_core: Sending event 22 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.713, +11)     event_send_core: Sending event 23 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.723, +10)     event_send_core: Sending event 24 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.733, +10)     event_send_core: Sending event 25 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.744, +11)     call_flush_cb: Calling flush_cb on (0;150)(799;159) area with 0x200006a8 image pointer         (in lv_refr.c line #1228)
[Trace] (9.757, +13)     event_send_core: Sending event 18 to 0x20005824 with 0x2007fe80 param  (in lv_event.c line #428)
[Trace] (9.768, +11)     event_send_core: Sending event 20 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.778, +10)     event_send_core: Sending event 21 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.789, +11)     event_send_core: Sending event 26 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (9.799, +10)     event_send_core: Sending event 27 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (9.809, +10)     event_send_core: Sending event 22 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.820, +11)     event_send_core: Sending event 23 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.830, +10)     event_send_core: Sending event 24 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.840, +10)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (9.851, +11)     event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (9.861, +10)     event_send_core: Sending event 25 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.872, +11)     event_send_core: Sending event 20 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.882, +10)     event_send_core: Sending event 21 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.892, +10)     event_send_core: Sending event 26 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (9.903, +11)     event_send_core: Sending event 27 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (9.913, +10)     event_send_core: Sending event 22 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.923, +10)     event_send_core: Sending event 23 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.934, +11)     event_send_core: Sending event 24 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.944, +10)     event_send_core: Sending event 25 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.955, +11)     event_send_core: Sending event 20 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.965, +10)     event_send_core: Sending event 21 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (9.975, +10)     event_send_core: Sending event 26 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (9.986, +11)     event_send_core: Sending event 27 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (9.996, +10)     event_send_core: Sending event 22 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.007, +11)    event_send_core: Sending event 23 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.017, +10)    event_send_core: Sending event 24 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.027, +10)    event_send_core: Sending event 25 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.038, +11)    call_flush_cb: Calling flush_cb on (0;160)(799;169) area with 0x200006a8 image pointer         (in lv_refr.c line #1228)
[Trace] (10.052, +14)    event_send_core: Sending event 18 to 0x20005824 with 0x2007fe80 param  (in lv_event.c line #428)
[Trace] (10.062, +10)    event_send_core: Sending event 20 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.072, +10)    event_send_core: Sending event 21 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.083, +11)    event_send_core: Sending event 26 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (10.093, +10)    event_send_core: Sending event 27 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (10.104, +11)    event_send_core: Sending event 22 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.114, +10)    event_send_core: Sending event 23 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.125, +11)    event_send_core: Sending event 24 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.135, +10)    event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (10.146, +11)    event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (10.156, +10)    event_send_core: Sending event 25 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.167, +11)    event_send_core: Sending event 20 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.177, +10)    event_send_core: Sending event 21 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.188, +11)    event_send_core: Sending event 26 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (10.198, +10)    event_send_core: Sending event 27 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (10.209, +11)    event_send_core: Sending event 22 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.219, +10)    event_send_core: Sending event 23 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.230, +11)    event_send_core: Sending event 24 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.240, +10)    event_send_core: Sending event 25 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.250, +10)    event_send_core: Sending event 20 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.261, +11)    event_send_core: Sending event 21 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.271, +10)    event_send_core: Sending event 26 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (10.282, +11)    event_send_core: Sending event 27 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (10.292, +10)    event_send_core: Sending event 22 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.303, +11)    event_send_core: Sending event 23 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.313, +10)    event_send_core: Sending event 24 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.324, +11)    event_send_core: Sending event 25 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.334, +10)    call_flush_cb: Calling flush_cb on (0;170)(799;179) area with 0x200006a8 image pointer         (in lv_refr.c line #1228)
[Trace] (10.348, +14)    event_send_core: Sending event 18 to 0x20005824 with 0x2007fe80 param  (in lv_event.c line #428)
[Trace] (10.358, +10)    event_send_core: Sending event 20 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.369, +11)    event_send_core: Sending event 21 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.379, +10)    event_send_core: Sending event 26 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (10.390, +11)    event_send_core: Sending event 27 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (10.400, +10)    event_send_core: Sending event 22 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.411, +11)    event_send_core: Sending event 23 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.421, +10)    event_send_core: Sending event 24 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.432, +11)    event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (10.442, +10)    event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (10.453, +11)    event_send_core: Sending event 25 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.463, +10)    event_send_core: Sending event 20 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.474, +11)    event_send_core: Sending event 21 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.484, +10)    event_send_core: Sending event 26 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (10.494, +10)    event_send_core: Sending event 27 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (10.505, +11)    event_send_core: Sending event 22 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.515, +10)    event_send_core: Sending event 23 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.526, +11)    event_send_core: Sending event 24 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.536, +10)    event_send_core: Sending event 25 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.547, +11)    event_send_core: Sending event 20 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.557, +10)    event_send_core: Sending event 21 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.568, +11)    event_send_core: Sending event 26 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (10.578, +10)    event_send_core: Sending event 27 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (10.589, +11)    event_send_core: Sending event 22 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.599, +10)    event_send_core: Sending event 23 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.610, +11)    event_send_core: Sending event 24 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.620, +10)    event_send_core: Sending event 25 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.631, +11)    call_flush_cb: Calling flush_cb on (0;180)(799;189) area with 0x200006a8 image pointer         (in lv_refr.c line #1228)
[Trace] (10.644, +13)    event_send_core: Sending event 18 to 0x20005824 with 0x2007fe80 param  (in lv_event.c line #428)
[Trace] (10.655, +11)    event_send_core: Sending event 20 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.665, +10)    event_send_core: Sending event 21 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.676, +11)    event_send_core: Sending event 26 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (10.686, +10)    event_send_core: Sending event 27 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (10.697, +11)    event_send_core: Sending event 22 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.707, +10)    event_send_core: Sending event 23 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.717, +10)    event_send_core: Sending event 24 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.728, +11)    event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (10.738, +10)    event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (10.749, +11)    event_send_core: Sending event 25 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.759, +10)    event_send_core: Sending event 20 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.770, +11)    event_send_core: Sending event 21 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.780, +10)    event_send_core: Sending event 26 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (10.791, +11)    event_send_core: Sending event 27 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (10.801, +10)    event_send_core: Sending event 22 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.812, +11)    event_send_core: Sending event 23 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.822, +10)    event_send_core: Sending event 24 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.833, +11)    event_send_core: Sending event 25 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.843, +10)    event_send_core: Sending event 20 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.854, +11)    event_send_core: Sending event 21 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.864, +10)    event_send_core: Sending event 26 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (10.874, +10)    event_send_core: Sending event 27 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (10.885, +11)    event_send_core: Sending event 22 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.895, +10)    event_send_core: Sending event 23 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.906, +11)    event_send_core: Sending event 24 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.916, +10)    event_send_core: Sending event 25 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.927, +11)    call_flush_cb: Calling flush_cb on (0;190)(799;199) area with 0x200006a8 image pointer         (in lv_refr.c line #1228)
[Trace] (10.940, +13)    event_send_core: Sending event 18 to 0x20005824 with 0x2007fe80 param  (in lv_event.c line #428)
[Trace] (10.951, +11)    event_send_core: Sending event 20 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.961, +10)    event_send_core: Sending event 21 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (10.972, +11)    event_send_core: Sending event 26 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (10.982, +10)    event_send_core: Sending event 27 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (10.993, +11)    event_send_core: Sending event 22 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.003, +10)    event_send_core: Sending event 23 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.014, +11)    event_send_core: Sending event 24 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.024, +10)    event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (11.035, +11)    event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (11.045, +10)    event_send_core: Sending event 25 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.056, +11)    event_send_core: Sending event 20 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.066, +10)    event_send_core: Sending event 21 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.077, +11)    event_send_core: Sending event 26 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (11.087, +10)    event_send_core: Sending event 27 to 0x20005878 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (11.098, +11)    event_send_core: Sending event 22 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.108, +10)    event_send_core: Sending event 23 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.118, +10)    event_send_core: Sending event 24 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.129, +11)    event_send_core: Sending event 25 to 0x20005878 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.139, +10)    event_send_core: Sending event 20 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.150, +11)    event_send_core: Sending event 21 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.160, +10)    event_send_core: Sending event 26 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (11.171, +11)    event_send_core: Sending event 27 to 0x200058bc with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (11.181, +10)    event_send_core: Sending event 22 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.192, +11)    event_send_core: Sending event 23 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.202, +10)    event_send_core: Sending event 24 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.213, +11)    event_send_core: Sending event 25 to 0x200058bc with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.223, +10)    call_flush_cb: Calling flush_cb on (0;200)(799;209) area with 0x200006a8 image pointer         (in lv_refr.c line #1228)
[Trace] (11.237, +14)    event_send_core: Sending event 18 to 0x20005824 with 0x2007fe80 param  (in lv_event.c line #428)
[Trace] (11.247, +10)    event_send_core: Sending event 20 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.258, +11)    event_send_core: Sending event 21 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.268, +10)    event_send_core: Sending event 26 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (11.279, +11)    event_send_core: Sending event 27 to 0x20005824 with 0x2007fce0 param  (in lv_event.c line #428)
[Trace] (11.289, +10)    event_send_core: Sending event 22 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.300, +11)    event_send_core: Sending event 20 to 0x200059b0 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.310, +10)    event_send_core: Sending event 21 to 0x200059b0 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.321, +11)    event_send_core: Sending event 26 to 0x200059b0 with 0x2007fb98 param  (in lv_event.c line #428)
[Trace] (11.331, +10)    event_send_core: Sending event 27 to 0x200059b0 with 0x2007fb98 param  (in lv_event.c line #428)
[Trace] (11.341, +10)    lv_mem_alloc: allocating 14 bytes      (in lv_mem.c line #127)
[Trace] (11.349, +8)     lv_mem_alloc: allocated at 0x20005a6c  (in lv_mem.c line #160)
[Trace] (11.356, +7)     lv_mem_alloc: allocating 552 bytes     (in lv_mem.c line #127)
[Trace] (11.363, +7)     lv_mem_alloc: allocated at 0x20005a80  (in lv_mem.c line #160)
[Trace] (11.376, +13)    lv_mem_free: freeing 0x20005a80        (in lv_mem.c line #171)
[Trace] (11.383, +7)     lv_mem_free: freeing 0x20005a6c        (in lv_mem.c line #171)
[Warn]  (11.390, +7)     _lv_img_cache_open: Image draw cannot open the image resource  (in lv_img_cache.c line #125)
[Warn]  (11.400, +10)    lv_draw_img: Image draw error  (in lv_draw_img.c line #81)
[Trace] (11.407, +7)     lv_mem_buf_get: begin, getting 90 bytes        (in lv_mem.c line #280)
[Trace] (11.415, +8)     lv_mem_realloc: reallocating 0 with 90 size    (in lv_mem.c line #196)
[Trace] (11.423, +8)     lv_mem_realloc: allocated at 0x20005a6c        (in lv_mem.c line #215)
[Trace] (11.430, +7)     lv_mem_buf_get: allocated (buffer id: 0, address: 0x20005a6c)  (in lv_mem.c line #318)
[Trace] (11.440, +10)    lv_mem_buf_release: begin (address: 0x20005a6c)        (in lv_mem.c line #334)
[Trace] (11.448, +8)     event_send_core: Sending event 22 to 0x200059b0 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.459, +11)    event_send_core: Sending event 23 to 0x200059b0 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.469, +10)    event_send_core: Sending event 24 to 0x200059b0 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.479, +10)    event_send_core: Sending event 44 to 0x200059b0 with 0x2007fab4 param  (in lv_event.c line #428)
[Trace] (11.490, +11)    event_send_core: Sending event 44 to 0x200059b0 with 0x2007fab4 param  (in lv_event.c line #428)
[Trace] (11.500, +10)    event_send_core: Sending event 25 to 0x200059b0 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.511, +11)    event_send_core: Sending event 23 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.521, +10)    event_send_core: Sending event 24 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)
[Trace] (11.532, +11)    event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (11.542, +10)    event_send_core: Sending event 44 to 0x20005824 with 0x2007fbfc param  (in lv_event.c line #428)
[Trace] (11.553, +11)    event_send_core: Sending event 25 to 0x20005824 with 0x20004db4 param  (in lv_event.c line #428)

If I set the log level to LV_LOG_LEVEL_WARN it doesn’t crash but as previously it only shows a box with No data with the pixel size rendered correctly, below is the [Warn] logs captured:

IMG-20230107-WA0002

START
flash chip initialised
f_mount successful
[Warn]  (0.270, +270)    _lv_img_cache_open: Image draw cannot open the image resource  (in lv_img_cache.c line #125)
[Warn]  (0.280, +10)     lv_draw_img: Image draw error  (in lv_draw_img.c line #81)
[Warn]  (0.289, +9)      _lv_img_cache_open: Image draw cannot open the image resource  (in lv_img_cache.c line #125)
[Warn]  (0.298, +9)      lv_draw_img: Image draw error  (in lv_draw_img.c line #81)
[Warn]  (0.307, +9)      _lv_img_cache_open: Image draw cannot open the image resource  (in lv_img_cache.c line #125)
[Warn]  (0.317, +10)     lv_draw_img: Image draw error  (in lv_draw_img.c line #81)
[Warn]  (0.326, +9)      _lv_img_cache_open: Image draw cannot open the image resource  (in lv_img_cache.c line #125)
[Warn]  (0.336, +10)     lv_draw_img: Image draw error  (in lv_draw_img.c line #81)
[Warn]  (0.345, +9)      _lv_img_cache_open: Image draw cannot open the image resource  (in lv_img_cache.c line #125)
[Warn]  (0.355, +10)     lv_draw_img: Image draw error  (in lv_draw_img.c line #81)
[Warn]  (0.364, +9)      _lv_img_cache_open: Image draw cannot open the image resource  (in lv_img_cache.c line #125)
[Warn]  (0.374, +10)     lv_draw_img: Image draw error  (in lv_draw_img.c line #81)

If I use lv_img_dsc_load_src instead the image loads fine and no error logs. I do run out of allocated memory to buffer the image if my .bin file is over 40kB which I could increase LV_MEM_SIZE but not sure if that is the most efficient way of doing it compared to letting LVGL handle it all?

[Error] (0.287, +287)    lv_mem_realloc: couldn't allocate memory       (in lv_mem.c line #211)
[Error] (0.295, +8)      lv_mem_buf_get: Asserted at expression: buf != NULL (Out of memory, can't allocate a new buffer (increase your LV_MEM_SIZE/heap size))         (in lv_mem.c line #312)