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