Skip to content

Commit e8bd53f

Browse files
committed
Merge pull request ARMmbed#45 from dinau/master
Fixed: The issue of interrupt vector remapping for GCC_ARM LPC1114
2 parents 2cdd41d + 841ce1d commit e8bd53f

File tree

1 file changed

+4
-1
lines changed
  • libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC11XX/TOOLCHAIN_GCC_ARM

1 file changed

+4
-1
lines changed

libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC11XX/TOOLCHAIN_GCC_ARM/LPC1114.ld

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
MEMORY
55
{
66
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 32K
7-
RAM (rwx) : ORIGIN = 0x10000000, LENGTH = 2K
7+
RAM (rwx) : ORIGIN = 0x100000C0, LENGTH = 0x0F40
88
}
99

1010
/* Linker script to place sections and symbol values. Should be used together
@@ -40,6 +40,9 @@ SECTIONS
4040
.text :
4141
{
4242
KEEP(*(.isr_vector))
43+
*(.text.Reset_Handler)
44+
*(.text.SystemInit)
45+
. = 0x200;
4346
*(.text*)
4447

4548
KEEP(*(.init))

0 commit comments

Comments
 (0)