This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

What is the RAM Model?

Hello,

I am evaluating the nRF52840-DK. I just want to play around with Nordic for awhile to determine if I want to port my current project which is written in C++ for Teensy.

I built one of the example apps in Segger and noticed this report on RAM usage

Is this just like the Teensy model where the first segment of green corresponds to the amount of static Heap usage and the second green segment corresponds to the minimum Stack usage?

If not, what is the memory model used in these products?

  • Hi,

     

     

    Is this just like the Teensy model where the first segment of green corresponds to the amount of static Heap usage and the second green segment corresponds to the minimum Stack usage?

     That is the stack section absolute address location and size. .heap is not used here, but the stack is placed at the top of RAM, and grows down. If you check out the generated .map file, you can search for the symbol "__StackTop" to see exactly this.

     

    Kind regards,

    Håkon

Related