Fix linker script for NRF52832/IAR

IAR linker script was using memory settings from the NRF52840 and
not the NRF52832.
pull/7631/head
Marcus Chang 2018-07-17 12:43:23 -07:00 committed by Cruz Monrreal II
parent 094268eddc
commit 87aa896e8a
1 changed files with 2 additions and 2 deletions

View File

@ -16,8 +16,8 @@ if (MBED_APP_START == 0) {
define symbol MBED_RAM_START = 0x20000000; define symbol MBED_RAM_START = 0x20000000;
define symbol MBED_RAM_SIZE = 0x10000; define symbol MBED_RAM_SIZE = 0x10000;
} else { } else {
define symbol MBED_RAM_START = 0x20003188; define symbol MBED_RAM_START = 0x200031D0;
define symbol MBED_RAM_SIZE = 0x3CE78; define symbol MBED_RAM_SIZE = 0xCE30;
} }
define symbol MBED_RAM0_START = MBED_RAM_START; define symbol MBED_RAM0_START = MBED_RAM_START;