Kconfig 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. menu "Hardware Drivers Config"
  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 n
  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 y
  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. config RT_USING_UART5
  23. bool "Enable UART 5"
  24. default n
  25. config RT_USING_UART6
  26. bool "Enable UART 6"
  27. default n
  28. config RT_USING_UART7
  29. bool "Enable UART 7"
  30. default n
  31. config RT_USING_UART8
  32. bool "Enable UART 8"
  33. default n
  34. config RT_USING_UART9
  35. bool "Enable UART 9"
  36. default n
  37. endif
  38. config BSP_USING_GIC
  39. bool
  40. default y
  41. config BSP_USING_GICV3
  42. bool
  43. default y
  44. endmenu