summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJerry Palacios <[email protected]>2024-02-08 11:10:10 -0600
committerJerry Palacios <[email protected]>2024-02-08 11:10:10 -0600
commitb9c6b22165ce1912ec40b808570e13756e8faf4e (patch)
treee6d33d1e35bde3f2ca09121b519a1e823e547b15 /examples
parent45454c53f1d429a314115701ba2360591b811f50 (diff)
cortex m33+nodsp+nofpu make file created
Diffstat (limited to 'examples')
-rw-r--r--examples/build_system/make/cpu/cortex-m33-nodsp-nofp.mk18
1 files changed, 18 insertions, 0 deletions
diff --git a/examples/build_system/make/cpu/cortex-m33-nodsp-nofp.mk b/examples/build_system/make/cpu/cortex-m33-nodsp-nofp.mk
new file mode 100644
index 000000000..0a2f99ab0
--- /dev/null
+++ b/examples/build_system/make/cpu/cortex-m33-nodsp-nofp.mk
@@ -0,0 +1,18 @@
+ifeq ($(TOOLCHAIN),gcc)
+ CFLAGS += \
+ -mthumb \
+ -mcpu=cortex-m33+nodsp \
+ -mfloat-abi=soft \
+
+#else ifeq ($(TOOLCHAIN),iar)
+# CFLAGS += \
+# --cpu cortex-m33 \
+# --fpu VFPv5-SP \
+#
+# ASFLAGS += \
+# --cpu cortex-m33 \
+# --fpu VFPv5-SP \
+#
+endif
+#
+FREERTOS_PORTABLE_SRC ?= $(FREERTOS_PORTABLE_PATH)/ARM_CM33_NTZ/non_secure \ No newline at end of file