Hi,
I have just added a VS service (PCA10040, s132 7.0.1, embedded studio v5.10a x64)and I understand I need to increase the ram given to the softdevice. However, I have try to add the followings in "Section Placement Macros".
FLASH_PH_START=0x0
FLASH_PH_SIZE=0x100000
RAM_PH_START=0x20000000
RAM_PH_SIZE=0x40000
FLASH_START=0x26000
FLASH_SIZE=0x5a000
SRAM_START=0x20002260
SRAM_SIZE=0xddc0
However, the program still crash when calling "err_code = nrf_sdh_ble_enable(&ram_start)".
The debug log is saying that I didn't change any macros
[2020-09-11_18:55:53:331]<info> app_timer: RTC: initialized.
[2020-09-11_18:55:53:331]<warning> nrf_sdh_ble: Insufficient RAM allocated for the SoftDevice.
[2020-09-11_18:55:53:331]<warning> nrf_sdh_ble: Change the RAM start location from 0x20002250 to 0x20002260.
[2020-09-11_18:55:53:331]<warning> nrf_sdh_ble: Maximum RAM size for application is 0xDDA0.
[2020-09-11_18:55:53:372]<error> nrf_sdh_ble: sd_ble_enable() returned NRF_ERROR_NO_MEM.
[2020-09-11_18:55:53:372]<error> app: Fatal error
Could you suggest how I can change them?
Jones