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

SES - is "flash_placement.xml" a misnomer?

SEGGER Embedded Studio Release 3.40 Build 2018052200.36079

The so-called "flash (sic?) placement" XML file contains two sections:

First:

  <MemorySegment name="FLASH" start="$(FLASH_PH_START)" size="$(FLASH_PH_SIZE)">
    <ProgramSection load="no" name=".reserved_flash" start="$(FLASH_PH_START)" size="$(FLASH_START)-$(FLASH_PH_START)" />
    :
    :
  </MemorySegment>

which does, indeed, seem to relate to the Flash;

and then:

  <MemorySegment name="RAM" start="$(RAM_PH_START)" size="$(RAM_PH_SIZE)">
    <ProgramSection load="no" name=".reserved_ram" start="$(RAM_PH_START)" size="$(RAM_START)-$(RAM_PH_START)" />
    :
    :
  </MemorySegment>

which seems to be RAM.

So it seems that   "flash (sic?) placement" is a misnomer?

Related