This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

compiled code flash and sram size

Hello
How to be informed about the compiled code flash and sram memories usage in keil mdk uvision 5.14?
Thanks.

Parents
  • 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.

Reply
  • 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.

Children