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.

    1. No there is nothing there. You yourself posted the diagram from the product spec showing that area is 'reserved'. There is nothing there.

    2. No I don't mean that at all and it's not what I said. You asked where data is stored when you use the pstorage functions and I told you it's stored at the end of flash memory, because it is. No system address isn't remapped, Flash is flash, UICR is UICR, they have the memory areas shown on the diagram, that's it. If you look at the pstorage code you will see it writes to the flash memory, directly, in the flash memory region from 0x00000000 to 0x0003ffff (or wherever your chip happens to have flash memory).

    3. No the RAM address 0x60000000 is not a DRAM because there is nothing there, at all.

Reply
    1. No there is nothing there. You yourself posted the diagram from the product spec showing that area is 'reserved'. There is nothing there.

    2. No I don't mean that at all and it's not what I said. You asked where data is stored when you use the pstorage functions and I told you it's stored at the end of flash memory, because it is. No system address isn't remapped, Flash is flash, UICR is UICR, they have the memory areas shown on the diagram, that's it. If you look at the pstorage code you will see it writes to the flash memory, directly, in the flash memory region from 0x00000000 to 0x0003ffff (or wherever your chip happens to have flash memory).

    3. No the RAM address 0x60000000 is not a DRAM because there is nothing there, at all.

Children
No Data
Related