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

Linker script BLE stack for NRF51802

What will be correct linker script changes for nrf51802 device using soft device ble application 

I made changes in RAM start and SIZE. found in open source forum, 

 MEMORY
{
    FLASH (rx) : ORIGIN = 0x1b000, LENGTH = 0x25000
    RAM (rwx) : ORIGIN = 0x20001fe8, LENGTH = 0x2018
}

and it is working but I don't understand why LENGTH = 0x2018 (8K) working and If I provide higher than this value it doesn't work  as RAM size of nrf51802 is 16KB

Thanks

Related