Skip to content

Commit ba019fd

Browse files
0xc0170theotherjimmy
authored andcommitted
LPC1768: RAM end adjust fix
The topmost 32 bytes used by IAP functions, this was not included in the RAM end previously.
1 parent ade705a commit ba019fd

File tree

1 file changed

+1
-1
lines changed
  • targets/TARGET_NXP/TARGET_LPC176X/device/TOOLCHAIN_IAR

1 file changed

+1
-1
lines changed

targets/TARGET_NXP/TARGET_LPC176X/device/TOOLCHAIN_IAR/LPC17xx.icf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ define symbol __ICFEDIT_region_ROM_end__ = 0x0007FFFF;
99
define symbol __ICFEDIT_region_NVIC_start__ = 0x10000000;
1010
define symbol __ICFEDIT_region_NVIC_end__ = 0x100000C7;
1111
define symbol __ICFEDIT_region_RAM_start__ = 0x100000C8;
12-
define symbol __ICFEDIT_region_RAM_end__ = 0x10007FDF;
12+
define symbol __ICFEDIT_region_RAM_end__ = 0x10007FE0;
1313

1414
/*-Sizes-*/
1515
/*Heap 1/4 of ram and stack 1/8*/

0 commit comments

Comments
 (0)