Kconfig 745 B

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