summaryrefslogtreecommitdiff
path: root/platforms/cortex-m.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'platforms/cortex-m.yaml')
-rw-r--r--platforms/cortex-m.yaml27
1 files changed, 23 insertions, 4 deletions
diff --git a/platforms/cortex-m.yaml b/platforms/cortex-m.yaml
index a41957a..91072c7 100644
--- a/platforms/cortex-m.yaml
+++ b/platforms/cortex-m.yaml
@@ -1,5 +1,6 @@
+# All cortex-m
- match:
- cpu: cortex-m4f
+ cpu: !re cortex-m
periph:
nvic:
@@ -17,13 +18,31 @@
14: PendSV
15: SysTick
+ toolchains:
+ - arm-none-eabi
+
+# cortex-m4
+- match:
+ cpu: !re cortex-m4
+
cflags:
- -mcpu=cortex-m4
+
+# cortex-m7
+- match:
+ cpu: !re cortex-m7
+
+ cflags:
+ - -mcpu=cortex-m7
+
+# FPU
+- match:
+ cpu: !re cortex-m.f
+
+ cflags:
- -mfloat-abi=hard
- -mfpu=fpv4-sp-d16
define:
- HAS_FPU
-
- toolchains:
- - arm-none-eabi
+ \ No newline at end of file