Hi,
I have a gui guider project developed under 1.3.0 and am trying to update it to run under 1.4.1.
There were some small issues with button text fonts being carried over properly but those were easily updated.
My main problem seems to be that each time I generate new code or run simulator (which generates new code), the lv_conf.h file is updated, overwritten with what seems to be some sort of default version of the file? Widgets that I am using get the define turned off. ex. #define LV_USE_CHART 0
John
Solved! Go to Solution.
HI JohnDel
This is a new feature since GUI Guider v1.4.0. lv_conf.h is automatically updated based on project configurations.
Unfortunately there is no option can diable it. I will escalated this feature as a feature request to development team. Thanks for bringing the problem to our attention.
Best Regards,
Jun Zhang
this did not happen in 1.3
To reproduce:
#include "gui_guider.h"
static lv_obj_t *SweepChart_chart = NULL;
void MyChart( void );
void MyChart( void )
{
SweepChart_chart = lv_chart_create( guider_ui.screen, NULL );
}
It seems to be more of an issue with 1.4.1? I don't think 1.3 has anything to do with the issue.
My workaround for now is to simply create a blank screen which will not be shown and add the screen and message box widgets and it works.
HI JohnDel
This is a new feature since GUI Guider v1.4.0. lv_conf.h is automatically updated based on project configurations.
Unfortunately there is no option can diable it. I will escalated this feature as a feature request to development team. Thanks for bringing the problem to our attention.
Best Regards,
Jun Zhang
Hi
There are two questions:
1. Could you please specify how to reproduce this problem? Please provide us step by step guide.
2. Is this problem in 1.4.1 only or also exists in 1.3.0?
Thanks,
Jun Zhang