NUCLEO_L073RZ: IAR linker script issue

pull/9977/head
Sarah Marsh 2019-02-21 16:37:19 +00:00 committed by jeromecoutant
parent 63242cfbb4
commit c668472f01
1 changed files with 3 additions and 3 deletions

View File

@ -3,12 +3,12 @@ if (!isdefinedsymbol(MBED_APP_START)) {
}
if (!isdefinedsymbol(MBED_APP_SIZE)) {
define symbol MBED_APP_SIZE = 0x3000;
define symbol MBED_APP_SIZE = 0x30000;
}
define symbol __intvec_start__ = MBED_APP_START;
define symbol __region_ROM_start__ = MBED_APP_SIZE;
define symbol __region_ROM_end__ = MBED_APP_START - MBED_APP_SIZE - 1;
define symbol __region_ROM_start__ = MBED_APP_START;
define symbol __region_ROM_end__ = MBED_APP_START + MBED_APP_SIZE - 1;
/* [RAM = 20kb = 0x5000] Vector table dynamic copy: 48 vectors = 192 bytes (0xC0) to be reserved in RAM */
define symbol __NVIC_start__ = 0x20000000;