Kconfig 567 B

123456789101112131415161718192021222324252627282930313233
  1. source "$BSP_DIR/../common/drivers/Kconfig"
  2. menu "RT-Thread rockchip RK2108 drivers"
  3. config RT_USING_CRU
  4. bool "Enable CRU"
  5. default n
  6. menu "Enable UART"
  7. config RT_USING_UART
  8. bool "Enable UART"
  9. default y
  10. if RT_USING_UART
  11. config RT_USING_UART0
  12. bool "Enable UART0"
  13. default n
  14. config RT_USING_UART1
  15. bool "Enable UART1"
  16. default n
  17. config RT_USING_UART2
  18. bool "Enable UART2"
  19. default y
  20. endif
  21. endmenu
  22. config RT_USING_SYSTICK
  23. bool "Enable SYSTICK"
  24. default n
  25. endmenu