Kconfig 934 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. menu "Hardware Drivers Config"
  2. config SOC_CH579M
  3. bool
  4. select RT_USING_USER_MAIN
  5. select RT_USING_COMPONENTS_INIT
  6. default y
  7. menu "On-chip Peripheral Drivers"
  8. menuconfig BSP_USING_UART
  9. bool "Enable UART"
  10. default y
  11. select RT_USING_SERIAL
  12. if BSP_USING_UART
  13. config BSP_USING_UART0
  14. bool "Enable UART0"
  15. default n
  16. config BSP_USING_UART1
  17. bool "Enable UART1"
  18. default y
  19. config BSP_USING_UART2
  20. bool "Enable UART2"
  21. default n
  22. config BSP_USING_UART3
  23. bool "Enable UART3"
  24. default n
  25. endif
  26. config BSP_USING_USBH
  27. bool "Enable USBH"
  28. default n
  29. select RT_USING_USB_HOST
  30. config BSP_USING_ETH
  31. bool "Enable ETH"
  32. default n
  33. select RT_USING_LWIP
  34. endmenu
  35. endmenu