diff options
| author | Ha Thach <[email protected]> | 2024-04-08 12:30:25 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-08 12:30:25 +0700 |
| commit | af1346c74878aaec8549483ae6371614f550c863 (patch) | |
| tree | 7cb60fe7130e66839019bc43bf7c7385f926c155 /examples/build_system/make | |
| parent | ffab7bf9dde0c0e960feeb5c1264823ca5a0ced7 (diff) | |
| parent | d6d8acad90c8a1578dcbd886154fbb3f2bd1a363 (diff) | |
Merge pull request #2466 from wavenumber-eng/MCX
TinyUSB stack ported to MCXA and MXCN freedom boards.
Diffstat (limited to 'examples/build_system/make')
| -rw-r--r-- | examples/build_system/make/cpu/cortex-m33-nodsp-nofp.mk | 16 |
1 files changed, 16 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..c65f24376 --- /dev/null +++ b/examples/build_system/make/cpu/cortex-m33-nodsp-nofp.mk @@ -0,0 +1,16 @@ +ifeq ($(TOOLCHAIN),gcc) + CFLAGS += \ + -mthumb \ + -mcpu=cortex-m33+nodsp \ + -mfloat-abi=soft \ + +else ifeq ($(TOOLCHAIN),iar) + CFLAGS += \ + --cpu cortex-m33+nodsp \ + + ASFLAGS += \ + --cpu cortex-m33+nodsp \ + +endif + +FREERTOS_PORTABLE_SRC ?= $(FREERTOS_PORTABLE_PATH)/ARM_CM33_NTZ/non_secure |
