diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-10-04 11:16:36 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-10-11 10:50:51 -0400 |
commit | 102ec4938d1d79e840889e3c0a726c11e9245d4b (patch) | |
tree | 736db6fb20e2110c88f2dbe785eb07c3ae9b7d69 /src/stm32f1 | |
parent | 75fa74313c178034b80f7c1e3ad0a7b55c34a3d6 (diff) | |
download | kutter-102ec4938d1d79e840889e3c0a726c11e9245d4b.tar.gz kutter-102ec4938d1d79e840889e3c0a726c11e9245d4b.tar.xz kutter-102ec4938d1d79e840889e3c0a726c11e9245d4b.zip |
stm32f1: Use the main lib/cmsis-core directory for cmsis includes
Use the main cmsis header files with stm32f1.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/stm32f1')
-rw-r--r-- | src/stm32f1/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stm32f1/Makefile b/src/stm32f1/Makefile index 169e71ee..66a677db 100644 --- a/src/stm32f1/Makefile +++ b/src/stm32f1/Makefile @@ -8,8 +8,8 @@ dirs-y += lib/cmsis-stm32f1/source dirs-y += lib/hal-stm32f1/source CFLAGS += -mthumb -mcpu=cortex-m3 -CFLAGS += -Ilib/cmsis-stm32f1/include -Ilib/cmsis-stm32f1/cmsis-include -CFLAGS += -Ilib/hal-stm32f1/include +CFLAGS += -Ilib/cmsis-core +CFLAGS += -Ilib/cmsis-stm32f1/include -Ilib/hal-stm32f1/include CFLAGS += -DSTM32F103xB CFLAGS += -O3 |