Beware that this post is related to an SDK in maintenance mode
More Info: Consider nRF Connect SDK for new designs
This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

The internal flash memory structure

Hi,

I have a simple and basic question. it may be chilly. the internal flash memory can store the data, but the question is it has stored as byte per address or word per address.

is the memory architecture is 32G X 8bits or 32G X 32bits? how to determine the 256kb memory size? and what storage structure?

example:-

the address is 0x00027000 and data is 0x41424344. how has it stored?

                      0x00027000=0x41424344 this right? or

like this format,

                      0x00027000=0x41

                      0x00027001=0x42

                      0x00027002=0x43

                      0x00027003=0x44

or another format

                      0x00027000=0x00000041

                      0x00027001=0x00000042

                      0x00027002=0x00000043

                      0x00027003=0x00000044

thanks in advance.

Parents Reply Children
Related