2026-01-29 2:28 AM
Hi
Starting my first project testing VSCode integration of ST tools instead of using Eclipse... Just reporting an issue with build analyzer, it is indicating that I have 188% of FLASH used...
The compiler output gives the correct information:
It seems an issue parsing the map or elf file to operate the tool.
Solved! Go to Solution.
2026-01-30 8:54 AM
Ok, it seems to be solved.
I was "copying" code from other project to reuse, and I have a structure that is to be placed in a specific section (to make sure that is at the start of FLASH)
__attribute__((section(".application_properties"))) __attribute__((aligned(16))) const ApplicationProperties_t applicationProperties = {2026-01-29 8:17 AM
Hi,
It may seem strange, but the build analyzer is designed to help you identify unusual issues.
There is likely a problem with the LD files (such as missing or incorrect section definitions).
You can try to identify the element causing this behavior by:
If everything looks fine from your perspective, you can share your LD and map files with me via private email if possible.
Please note that there might also be an issue with the build analyzer implementation.
2026-01-30 8:54 AM
Ok, it seems to be solved.
I was "copying" code from other project to reuse, and I have a structure that is to be placed in a specific section (to make sure that is at the start of FLASH)
__attribute__((section(".application_properties"))) __attribute__((aligned(16))) const ApplicationProperties_t applicationProperties = {