mirror of https://github.com/ARMmbed/mbed-os.git
NUCLEO_L073RZ: IAR linker script issue
parent
63242cfbb4
commit
c668472f01
|
@ -3,12 +3,12 @@ if (!isdefinedsymbol(MBED_APP_START)) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isdefinedsymbol(MBED_APP_SIZE)) {
|
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 __intvec_start__ = MBED_APP_START;
|
||||||
define symbol __region_ROM_start__ = MBED_APP_SIZE;
|
define symbol __region_ROM_start__ = MBED_APP_START;
|
||||||
define symbol __region_ROM_end__ = MBED_APP_START - MBED_APP_SIZE - 1;
|
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 */
|
/* [RAM = 20kb = 0x5000] Vector table dynamic copy: 48 vectors = 192 bytes (0xC0) to be reserved in RAM */
|
||||||
define symbol __NVIC_start__ = 0x20000000;
|
define symbol __NVIC_start__ = 0x20000000;
|
||||||
|
|
Loading…
Reference in New Issue