Hi Eran,
(R) is read-only (flash), (R/W) is initialized RAM and (N/I) is not initialized RAM (Stack).
So the RAM used is (R/W)+(N/I).
Hello,
for Code/Flash size, the simplest way is to look at the end of the map file:
Total size of all blocks to be downloaded: 29963
That means: 29963 bytes in Flash.
To get more details, have a look at the text just above the vector allocation:
Summary of section sizes per section type:
READ_ONLY (R): 750B (dec: 29963)
READ_WRITE (R/W): F63 (dec: 3939)
NO_INIT (N/I): 7E (dec: 126)
Again, here the code size (29963). The RAM is the sum of 3939+126=4065 bytes.
Hope this helps.