Kconfig 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. menu "Hardware Drivers Config"
  2. config SOC_GD32VF103V
  3. bool
  4. select SOC_SERIES_GD32VF103V
  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_UART4
  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. config BSP_USING_UART2
  26. bool "Enable UART2"
  27. default n
  28. config BSP_USING_UART3
  29. bool "Enable UART3"
  30. default n
  31. config BSP_USING_UART4
  32. bool "Enable UART4"
  33. default n
  34. endif
  35. endmenu
  36. menu "Board extended module Drivers"
  37. endmenu
  38. endmenu