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

S130 Target Memory Modification

Hi,

Recently, I was trying to established an application based on ble_app_hrs with PCA10028.

The MCU I used is nRF51822_xxac (256KB), S130 for softdevice and the SDK is 12.3.

The original target memory setting is:

IROM1 start 0x0 size 0x40000

IRAM1 start 0x20000000 size 0x8000

Before I add my program in the project the Program Size: Code=29680 RO-data=460 RW-data=444 ZI-data=4932. -> Flash Successfully.

After I programmed my code, the size become like this: Code=42980 RO-data=1804 RW-data=940 ZI-data=7700  -> It will show as below picture

  This hex file has data in SoftDevice region.

Thus, I would like to find someone to guide me how to modified the setting to meet my requirement.

Thanks.

Parents Reply
  • Hello,

    What SDK version are these screenshots from?

    Were you able to monitor the log? What does your log output say?

     

    Wedy Hsiao said:
    Besides, I aslo confused the description "that (IRAM1 Size + IRAM1 Start) should not be larger than the size of available RAM", I think only the start address 0x20000000 is already bigger that the chip restriction

     The RAM is mapped from 0x20000000 -> the size of the RAM (0x20008000). 

    The reason why it is not a stable setting like ROM is that ROM (the flash) requirement for the softdevice is a given size (the size of the binary file), while the amount of RAM that the softdevice needs depends on how many connections you support and how many services you have. In order to not take up a lot of RAM, this is set dynamically (in compile time) so that it leaves more RAM to the application if it is not needed by the softdevice. 

    The reason I asked about the SDK version is that the latest screenshots doesn't match with what I see in SDK12.3.0. And are you using SES?

Children
Related