Merge pull request #9977 from jeromecoutant/PR_L073_IAR

NUCLEO_L073RZ: IAR linker script issue
pull/10012/head
Martin Kojtal 2019-03-08 12:21:39 +01:00 committed by GitHub
commit 7d9c63310d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;