Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: hello SerialTestv11 SerialTestv12 Sierpinski ... more
Diff: TARGET_MAX32625PICO/TOOLCHAIN_IAR/MAX32625.icf
- Revision:
- 171:3a7713b1edbc
- Parent:
- 169:a7c7b631e539
--- a/TARGET_MAX32625PICO/TOOLCHAIN_IAR/MAX32625.icf Thu Sep 06 13:39:34 2018 +0100 +++ b/TARGET_MAX32625PICO/TOOLCHAIN_IAR/MAX32625.icf Thu Nov 08 11:45:42 2018 +0000 @@ -1,7 +1,14 @@ +if (!isdefinedsymbol(MBED_APP_START)) { + define symbol MBED_APP_START = 0x00010000; +} +if (!isdefinedsymbol(MBED_APP_SIZE)) { + define symbol MBED_APP_SIZE = 0x00070000; +} + /* [ROM] */ -define symbol __intvec_start__ = 0x00010000; -define symbol __region_ROM_start__ = 0x00010000; -define symbol __region_ROM_end__ = 0x0007FFFF; +define symbol __intvec_start__ = MBED_APP_START; +define symbol __region_ROM_start__ = MBED_APP_START; +define symbol __region_ROM_end__ = MBED_APP_START + MBED_APP_SIZE - 1; /* [RAM] Vector table dynamic copy: 68 vectors * 4 bytes = 272 (0x110) bytes */ define symbol __NVIC_start__ = 0x00010000;