Kconfig 418 B

12345678910111213141516171819202122
  1. config BSP_USING_DIRECT_UART
  2. bool "Using Direct UART without driver"
  3. default y
  4. config BSP_DRV_UART
  5. bool "Enabel UART driver"
  6. select RT_USING_SERIAL
  7. default y
  8. if BSP_DRV_UART
  9. config RT_USING_UART0
  10. bool "Enabel UART 0"
  11. default y
  12. config RT_USING_UART1
  13. bool "Enabel UART 1"
  14. default n
  15. endif
  16. config BSP_DRV_AHCI
  17. bool "Enabel AHCI disk driver"
  18. default y