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

nRF52810 central iimplementation

I want to implement CENTRAL using nRF52810.

To implement the central, the softdevice must be s132 but I am not familiar with the softdevice concept.

Until now, the softdevice has only operated peripheral with s112.

How do I implement nRF52810 as s132 for softdevice?

Thank you.

Parents Reply Children
  • above is keil C project

    .emproject (SES)

    linker_section_placement_macros="FLASH_PH_START=0x0;FLASH_PH_SIZE=0x80000;RAM_PH_START=0x20000000;RAM_PH_SIZE=0x10000;FLASH_START=0x26000;FLASH_SIZE=0x5a000;RAM_START=0x20002ad8;RAM_SIZE=0xd528"

    Here 

    Or ARM embedded gcc look at .ld file for mapping.

    The SD ROM size is almost fixed. That means the ROM start is fixed.

    But the RAM is depend on your application ,So that , you may get the RAM start when you run the NRF log message.

Related