summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorhathach <[email protected]>2024-04-05 20:31:55 +0700
committerhathach <[email protected]>2024-04-05 20:31:55 +0700
commitc97c3418c741a26666942e184ca514f5dbdafcfa (patch)
treea2dd5a58be1d24673a6c85dc8b2a7de613343ce3 /examples
parent757a1726e8c6eb52f959e5f42a7ae22f769c19c3 (diff)
minor update bsp
Diffstat (limited to 'examples')
-rw-r--r--examples/build_system/cmake/cpu/cortex-m23.cmake4
-rw-r--r--examples/build_system/cmake/cpu/cortex-m33-nodsp-nofp.cmake2
-rw-r--r--examples/build_system/cmake/cpu/cortex-m33.cmake2
3 files changed, 4 insertions, 4 deletions
diff --git a/examples/build_system/cmake/cpu/cortex-m23.cmake b/examples/build_system/cmake/cpu/cortex-m23.cmake
index 3093dc99a..c7ce1d242 100644
--- a/examples/build_system/cmake/cpu/cortex-m23.cmake
+++ b/examples/build_system/cmake/cpu/cortex-m23.cmake
@@ -5,13 +5,13 @@ if (TOOLCHAIN STREQUAL "gcc")
-mfloat-abi=soft
)
- set(FREERTOS_PORT GCC_ARM_CM0 CACHE INTERNAL "")
+ set(FREERTOS_PORT GCC_ARM_CM23_NTZ_NONSECURE CACHE INTERNAL "")
elseif (TOOLCHAIN STREQUAL "iar")
set(TOOLCHAIN_COMMON_FLAGS
--cpu cortex-m23
)
- set(FREERTOS_PORT IAR_ARM_CM0 CACHE INTERNAL "")
+ set(FREERTOS_PORT IAR_ARM_CM23_NTZ_NONSECURE CACHE INTERNAL "")
endif ()
diff --git a/examples/build_system/cmake/cpu/cortex-m33-nodsp-nofp.cmake b/examples/build_system/cmake/cpu/cortex-m33-nodsp-nofp.cmake
index 7946affbe..01e6b979a 100644
--- a/examples/build_system/cmake/cpu/cortex-m33-nodsp-nofp.cmake
+++ b/examples/build_system/cmake/cpu/cortex-m33-nodsp-nofp.cmake
@@ -12,6 +12,6 @@ elseif (TOOLCHAIN STREQUAL "iar")
--cpu cortex-m33+nodsp
)
- set(FREERTOS_PORT IAR_ARM_CM4F CACHE INTERNAL "")
+ set(FREERTOS_PORT IAR_ARM_CM33_NTZ_NONSECURE CACHE INTERNAL "")
endif ()
diff --git a/examples/build_system/cmake/cpu/cortex-m33.cmake b/examples/build_system/cmake/cpu/cortex-m33.cmake
index 7ebaf1748..94c29099d 100644
--- a/examples/build_system/cmake/cpu/cortex-m33.cmake
+++ b/examples/build_system/cmake/cpu/cortex-m33.cmake
@@ -14,6 +14,6 @@ elseif (TOOLCHAIN STREQUAL "iar")
--fpu VFPv5-SP
)
- set(FREERTOS_PORT IAR_ARM_CM4F CACHE INTERNAL "")
+ set(FREERTOS_PORT IAR_ARM_CM33_NTZ_NONSECURE CACHE INTERNAL "")
endif ()