9 years, 1 month ago.

Buils Details

Hello, the Build Details Shows not the correct value after building Prozess. Example: 61,2K Flash, the binary file has 62848 Bytes! The same is for the RAM, it Show 28,2K 88%. When I used a Little more RAM, +512 Bytes, the value is 91%, but the program in Controller works not. What can I do for this error ?

Thanks for help Bernd

1 Answer

9 years, 1 month ago.

What it shows is just the size of the global variables. Everything either statically defined at runtime (so if you put int value[100]; in your main function for examlpe), or dynamically using new or malloc, needs to be added to it.

Accepted Answer