move tools/cmake to examples/build_system

This commit is contained in:
hathach
2023-11-23 20:06:22 +07:00
parent 54356a719e
commit 7213b8abb1
31 changed files with 21 additions and 21 deletions

View File

@@ -0,0 +1,16 @@
if (TOOLCHAIN STREQUAL "gcc")
set(TOOLCHAIN_COMMON_FLAGS
-mthumb
-mcpu=cortex-m3
)
set(FREERTOS_PORT GCC_ARM_CM3 CACHE INTERNAL "")
elseif (TOOLCHAIN STREQUAL "iar")
set(TOOLCHAIN_COMMON_FLAGS
--cpu cortex-m3
)
set(FREERTOS_PORT IAR_ARM_CM3 CACHE INTERNAL "")
endif ()