Skip to content

Commit b62005e

Browse files
bcostmarostm
authored andcommitted
DISCO_F413ZH: Fix wrong NVIC RAM end address in IAR icf file
1 parent e8ceb3b commit b62005e

File tree

1 file changed

+2
-2
lines changed
  • targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/device/TOOLCHAIN_IAR

1 file changed

+2
-2
lines changed

targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F413xH/device/TOOLCHAIN_IAR/stm32f413xx.icf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ define symbol __region_ROM_end__ = 0x0817FFFF;
55

66
/* [RAM = 320kb = 0x50000] Vector table dynamic copy: 118 vectors = 472 bytes (0x1D8) to be reserved in RAM */
77
define symbol __NVIC_start__ = 0x20000000;
8-
define symbol __NVIC_end__ = 0x200001DB; /* Aligned on 8 bytes */
9-
define symbol __region_RAM_start__ = 0x200001DC;
8+
define symbol __NVIC_end__ = 0x200001D7;
9+
define symbol __region_RAM_start__ = 0x200001D8; /* Aligned on 8 bytes */
1010
define symbol __region_RAM_end__ = 0x2004FFFF;
1111

1212
/* Memory regions */

0 commit comments

Comments
 (0)