// *.map file
/*==============================================================================
Total RO Size (Code + RO Data) 1139876 (1.087MB)
Total RW Size (RW Data + ZI Data 182236 (177.96kB)
Total ROM Size (Code + RO Data + RW Data) 1141560 (1.088MB)
===============================================================================
Total RO Size (Code + RO Data) 1011296 ( 987.5kB)
Total RW Size (RW Data + ZI Data) 4386840 (4.183MB)
Total ROM Size (Code + RO Data + RW Data) 1012844 ( 989.11kB)
==============================================================================*/
Total RO Size = code size in bytes
This is the size of the code only.
Total RW Size = RAM size in bytes
This is the minimum amount of RAM necessary to run the code.
This includes both the heap and the stacks because they are declared as fixed in the application image.
Total ROM Size = image size in bytes
This is the size of the code and data that needs to be stored in Flash.
You need at least this much flash memory available.