Skip to content

Commit 59155b7

Browse files
adustm0xc0170
authored andcommitted
Fix for IAR tests
1 parent 9d143dc commit 59155b7

File tree

1 file changed

+2
-2
lines changed
  • targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L496xG/device/TOOLCHAIN_IAR

1 file changed

+2
-2
lines changed

targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L496xG/device/TOOLCHAIN_IAR/stm32l496xx.icf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ define symbol __region_ROM_end__ = 0x08000000 + 0x100000 - 1;
66
/* [RAM = 0x50000] */
77
/* Vector table dynamic copy: Total: 107 vectors = 428 bytes (0x1AC) to be reserved in RAM */
88
define symbol __NVIC_start__ = 0x20000000;
9-
define symbol __NVIC_end__ = 0x200001AC; /* Aligned on 8 bytes (428 = 53 x 8) */
10-
define symbol __region_SRAM1_start__ = 0x20000000;
9+
define symbol __NVIC_end__ = 0x200001AC - 1;
10+
define symbol __region_SRAM1_start__ = 0x200001AC; /* Aligned on 8 bytes (428 = 53 x 8) */
1111
define symbol __region_SRAM1_end__ = 0x2004FFFF;
1212

1313
/* Memory regions */

0 commit comments

Comments
 (0)