Hello,
I have developed an application for my NRF52 DK and I want to port it to an NRF52832-QFAB-R which has a reduced amount of storage. I have changed the parameter "Target Device" in the "Debugger" options to "nRF52832_xxAB" and rebuild the code, but I got some error messages:

There are some linker errors, obviously because the sections are outside of the memory. So I have changed "Linker->Memory Segments:
FLASH1 RX 0x00000000 0x00040000;RAM1 RWX 0x20000000 0x00008000
And "Linker->Section Placement Macros":
FLASH_PH_START=0x0 FLASH_PH_SIZE=0x40000 RAM_PH_START=0x20000000 RAM_PH_SIZE=0x8000 FLASH_START=0x26000 FLASH_SIZE=0x1a000 RAM_START=0x20002bd0 RAM_SIZE=0x5430
But the error still exists. What is missing here?