Hey,
While working with the NXP Gui Guider I've come across this strange issue where the generated code cant be built for zephyr due to an extra parameter in lv_animing_set_src. I am not sure when this had changed or if its an error with the code generator but a few weeks ago the generated code worked for me.
Gui-Guider:
version used: GUI-Guider-1.7.0-GA
LVGL Version 8.3.10 selected
Target board (i.MX RT) MIMXRT1060_EVKB
Aircon Application selected to use as template
Zephyr workspace:
LVGL ver: 8.3.11
Zephyr ver: 3.6.99
Generated C code for this template
Exported code for zephyr
In File: setup_scr_ui_Aircon.c

96 | lv_animimg_set_src(ui->ui_Aircon_aircon_fan, (const void **) ui_Aircon_aircon_fan_imgs, 6, false);
Fails due to the extra paramter passed, "false" the last paramter which isnt required in this function call.

When i remove the extra paramter from the function call it seems to work as long as i add a blank "lv_font.h" file into the guider_customer_fonts directory

Is this a bug or am I missing something?