1
0

Kconfig 421 B

1234567891011121314151617181920
  1. if ARCH_ARM_CORTEX_M
  2. menu "ARM CMSIS"
  3. config RT_USING_CMSIS_OS
  4. bool "Using CMSIS RTOS API"
  5. default n
  6. help
  7. Enable CMSIS RTOS API, which is implemented above RT-Thread.
  8. config RT_USING_RTT_CMSIS
  9. bool "Using CMSIS Header files in RT-Thread"
  10. default n
  11. help
  12. Use CMSIS header files in RT-Thread/components/CMSIS. Otherwise, use the
  13. CMSIS header files in BSP.
  14. endmenu
  15. endif