Kconfig 766 B

12345678910111213141516171819202122232425262728293031323334353637
  1. menu "UART Devices"
  2. config DRIVERS_UART
  3. bool "enable uart driver"
  4. default y
  5. config HAL_TEST_UART
  6. bool "enable uart hal APIs test command"
  7. depends on DRIVERS_UART
  8. default n
  9. config SUNXI_UART_SUPPORT_POLL
  10. bool "support poll APIs"
  11. depends on DRIVERS_UART
  12. default n
  13. config SUNXI_UART_REGISTER_UART0
  14. bool "support uart0 device"
  15. depends on DRIVERS_UART
  16. default n
  17. config SUNXI_UART_REGISTER_UART1
  18. bool "support uart1 device"
  19. depends on DRIVERS_UART
  20. default n
  21. config SUNXI_UART_REGISTER_UART2
  22. bool "support uart2 device"
  23. depends on DRIVERS_UART
  24. default n
  25. config SUNXI_UART_REGISTER_UART3
  26. bool "support uart3 device"
  27. depends on DRIVERS_UART
  28. default n
  29. endmenu