summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2025-03-10 12:18:22 +0700
committerGitHub <[email protected]>2025-03-10 12:18:22 +0700
commitdc459031619bbb46687b0dacb7d159d8ec626bde (patch)
treeec21b9c2bef6283da231294a49db0fd3df63acab
parent02a630b3da54f68df87a1605661013e177e58067 (diff)
parent683b1e9702f60a8093ada3b0fdd4a7a51a05a981 (diff)
Merge pull request #3019 from hathach/fix-pico-examples-build
fix(rp2040) set RTOS as cmake cache to fix pico-example build
-rw-r--r--hw/bsp/family_support.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/bsp/family_support.cmake b/hw/bsp/family_support.cmake
index 562d4995b..e7161eba3 100644
--- a/hw/bsp/family_support.cmake
+++ b/hw/bsp/family_support.cmake
@@ -12,7 +12,7 @@ set(UF2CONV_PY ${TOP}/tools/uf2/utils/uf2conv.py)
# RTOS
#-------------------------------------------------------------
if (NOT DEFINED RTOS)
- set(RTOS noos)
+ set(RTOS noos CACHE STRING "RTOS")
endif ()
#-------------------------------------------------------------