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

Simple Question About Memory Map and Region

Hi, this is kind of a basic question.

So please forgive me if this is too easy...

nRF51822_PS_3.1

This picture is from nRF51822_PS_3.1.pdf.

Series_ref manual

ref 2

Also these pictures is from the nRF51_Series_Reference_manual v3.0.pdf

==1. The SRAM has the data.

Then what's inside the RAM where the address at 0x6000 0000 to 0xA000 0000 ?

If its has different things case by case, then what usually this RAM holds?

==2. The RAM where the address at 0x6000 0000 to 0xA000 0000, is a DRAM?

Or this RAM dropped a "S'?

==3. At the nRF51822_PS_3.1.pdf page 64, it says that

"The flash memory is organized in 256 byte rows starting at CODE and UICR start address.".

I use pstorage functions provided from the SDK 7.2 with SoftDevice S110.

When I save data using pstorage_store or pstorage_update function,

(skipping the cmd_queue stuffs)

the data are saved at "reserved" places in memory map in between

Code, FICR, and UICR?

Edited : Added Memory Screen when debugging

memory

-Regards, Mango922

Parents
    1. Nothing. That picture is the generic Cortex-M0 diagram which shows the possible blocks on a Cortex-M0 system. The nrf51 manual shows what blocks are actually implemented. So there's nothing up at 0x60000000-0xA0000000.

    2. The data is stored in the topmost flash pages of the CODE region, ie on 256k flash chips from 0x3fc00 or 0x3f800 or lower if you want more than a couple of kb of storages. Or if there's a bootloader installed at the top, just below that. pstorage comes out of your flash memory allocation.

  • That is how you check the flash memory while debugging, what makes you think the data shown there is incorrect? I seriously doubt that pstorage_load is reading 'other blocks instead'. Perhaps you should start back at the beginning and ask a new question about the problem you're actually having, with code and examples, then someone may be able to help you.

Reply
  • That is how you check the flash memory while debugging, what makes you think the data shown there is incorrect? I seriously doubt that pstorage_load is reading 'other blocks instead'. Perhaps you should start back at the beginning and ask a new question about the problem you're actually having, with code and examples, then someone may be able to help you.

Children
No Data
Related