Kconfig 643 B

12345678910111213141516171819202122232425262728293031
  1. menu "General Drivers Configuration"
  2. menuconfig BSP_USING_UART
  3. bool "Using UART"
  4. select RT_USING_SERIAL
  5. default y
  6. if BSP_USING_UART
  7. config RT_USING_UART0
  8. bool "Enable UART 0"
  9. default y
  10. config RT_USING_UART1
  11. bool "Enable UART 1"
  12. default n
  13. config RT_USING_UART2
  14. bool "Enable UART 2"
  15. default n
  16. config RT_USING_UART3
  17. bool "Enable UART 3"
  18. default n
  19. config RT_USING_UART4
  20. bool "Enable UART 4"
  21. default n
  22. endif
  23. endmenu