diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-07-31 14:11:25 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-08-06 23:36:05 -0400 |
commit | f4910e119a11536c71aabf17871fa4e79e4df0d7 (patch) | |
tree | 193eca6e643060a51cb6b22900d9ebaa9b467ff9 /src | |
parent | 742048a08d11982e98a1dc00c67a3974e6b5618c (diff) | |
download | kutter-f4910e119a11536c71aabf17871fa4e79e4df0d7.tar.gz kutter-f4910e119a11536c71aabf17871fa4e79e4df0d7.tar.xz kutter-f4910e119a11536c71aabf17871fa4e79e4df0d7.zip |
lpc176x: Use common cmsis-core files
No need to include separate cmsis files from the mbed project - the
standard CMSIS_5 files work fine.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/lpc176x/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lpc176x/Makefile b/src/lpc176x/Makefile index ce58b2bb..58a051f5 100644 --- a/src/lpc176x/Makefile +++ b/src/lpc176x/Makefile @@ -4,10 +4,10 @@ CROSS_PREFIX=arm-none-eabi- dirs-y += src/lpc176x src/generic -dirs-y += lib/lpc176x/device lib/lpc176x/device/TOOLCHAIN_GCC_ARM +dirs-y += lib/lpc176x/device/TOOLCHAIN_GCC_ARM CFLAGS += -mthumb -mcpu=cortex-m3 -CFLAGS += -Ilib/lpc176x/device -Ilib/lpc176x/device -Ilib/lpc176x/cmsis +CFLAGS += -Ilib/lpc176x/device -Ilib/cmsis-core CFLAGS_klipper.elf += -T $(OUT)LPC1768.ld CFLAGS_klipper.elf += --specs=nano.specs --specs=nosys.specs |