hello every body.
I was get code by gui guider. and build, it is success.
result of build by keil:Program Size: Code=166246 RO-data=34594 RW-data=520 ZI-data=56392
I just add a button an text. It is too bigger then my mcu internal flash.
I try to remove some file but can not build the code.
so how I do?any Documentation?
To reduce the image size, you can also try to use optimization options with size optimized.
-O2: balance optimization for size and speed.
-Oz: size optimization, disregards performance optimization
Hello,
To reduce the image size, you can disable the unused widgets via the lv_conf.h file.
for example, if you don't want to use the Image widget, you just need to update the following line in lv_conf.h:
#define LV_USE_IMG 1 # change 1 to 0 can disable this widget
Hi Linda,
would you be able to share the project or a small test case that shows this so we can confirm the behavior?
thanks