Kconfig 775 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. menu "Hardware Drivers Config"
  2. config SOC_HUMMINGBIRD
  3. bool
  4. select SOC_SERIES_HUMMINGBIRD
  5. select RT_USING_HW_ATOMIC
  6. default y
  7. menu "Onboard Peripheral Drivers"
  8. config BSP_USING_UART_CONSOLE
  9. bool "Enable UART CONSOLE"
  10. select BSP_USING_UART
  11. select BSP_USING_UART0
  12. default y
  13. endmenu
  14. menu "On-chip Peripheral Drivers"
  15. menuconfig BSP_USING_UART
  16. bool "Enable UART"
  17. default y
  18. select RT_USING_SERIAL
  19. if BSP_USING_UART
  20. config BSP_USING_UART0
  21. bool "Enable UART0"
  22. default n
  23. config BSP_USING_UART1
  24. bool "Enable UART1"
  25. default n
  26. endif
  27. endmenu
  28. menu "Board extended module Drivers"
  29. endmenu
  30. endmenu