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
  • If you started out with ble_app_hrs, then I suggest that you try to use the memory target settings that come with this example:

    What you are currently seeing is that you try to program your application with the flash settings set to the entire flash of the chip, but need to save space for the softdevice in the bottom of the flash. 

    The softdevice also requirre some RAM (IRAM1), so set these settings as well. The RAM requirement may change in your application, but it should be printed in the log if you need to adjust it. 

    Best regards,

    Edvin

  • The flash needs to start after the softdevice. The softdevice has a given size. As you can see from your screenshot the softdevice uses 108kB.

    108kB = 108Bytes*1024 = (dec)110592 Bytes =  (hex)0x1B000, so you should use that as your ROM1 Start (as in my previous screenshot). The size of the flash on the nRF51 is 0x4 0000. So the size should be 0x40000 - start value, which is 0x25000.

    The IRAM1 is a bit more complicated, since it depends on your number of services, characteristics, and number of supported connections. However, this should be written in the log if you need to adjust it. 

Reply
  • The flash needs to start after the softdevice. The softdevice has a given size. As you can see from your screenshot the softdevice uses 108kB.

    108kB = 108Bytes*1024 = (dec)110592 Bytes =  (hex)0x1B000, so you should use that as your ROM1 Start (as in my previous screenshot). The size of the flash on the nRF51 is 0x4 0000. So the size should be 0x40000 - start value, which is 0x25000.

    The IRAM1 is a bit more complicated, since it depends on your number of services, characteristics, and number of supported connections. However, this should be written in the log if you need to adjust it. 

Children
Related