frdmmcxa153 now working with cmake+ninja

This commit is contained in:
Jerry Palacios
2024-02-09 11:07:51 -06:00
parent 73122cd5f9
commit b44cae8f18
3 changed files with 27 additions and 12 deletions

View File

@@ -0,0 +1,17 @@
if (TOOLCHAIN STREQUAL "gcc")
set(TOOLCHAIN_COMMON_FLAGS
-mthumb
-mcpu=cortex-m33+nodsp
-mfloat-abi=soft
)
set(FREERTOS_PORT GCC_ARM_CM33_NTZ_NONSECURE CACHE INTERNAL "")
elseif (TOOLCHAIN STREQUAL "iar")
set(TOOLCHAIN_COMMON_FLAGS
--cpu cortex-m33+nodsp
)
set(FREERTOS_PORT IAR_ARM_CM4F CACHE INTERNAL "")
endif ()