Hello How to be informed about the compiled code flash and sram memories usage in keil mdk uvision 5.14? Thanks.
When you compile in the uVision IDE, the Build Output shows after the linking...
Program Size: Code=19888 RO-data=1164 RW-data=148 ZI-data=16704
The total ROM size is Code + RO-data. The total RAM size is RW-data + ZI-data.
Of course you can also use the linker MAP file to calculate that information.
Thanks.