File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
targets/TARGET_STM/TARGET_STM32L1/TARGET_XDOT_L151CC/device/TOOLCHAIN_IAR Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change
1
+ if (!isdefinedsymbol(MBED_APP_START)) { define symbol MBED_APP_START = 0x08000000; }
2
+ if (!isdefinedsymbol(MBED_APP_SIZE)) { define symbol MBED_APP_SIZE = 0x40000; }
1
3
/* [ROM = 256kb = 0x40000] */
2
- define symbol __intvec_start__ = 0x08000000 ;
3
- define symbol __region_ROM_start__ = 0x08000000 ;
4
- define symbol __region_ROM_end__ = 0x0803FFFF ;
4
+ define symbol __intvec_start__ = MBED_APP_START ;
5
+ define symbol __region_ROM_start__ = MBED_APP_START ;
6
+ define symbol __region_ROM_end__ = MBED_APP_START + MBED_APP_SIZE - 1 ;
5
7
6
8
/* [RAM = 32kb = 0x8000] Vector table dynamic copy: 73 vectors = 292 bytes (0x124) to be reserved in RAM */
7
9
define symbol __NVIC_start__ = 0x20000000;
You can’t perform that action at this time.
0 commit comments