Kconfig 519 B

123456789101112131415161718192021222324252627282930
  1. menu "Hardware Drivers Config"
  2. menu "Onboard Peripheral Drivers"
  3. endmenu
  4. menu "On-chip Peripheral Drivers"
  5. config BSP_USING_GPIO
  6. bool "Enable GPIO"
  7. select RT_USING_PIN
  8. default y
  9. menuconfig BSP_USING_UART
  10. bool "Enable UART"
  11. default y
  12. select RT_USING_SERIAL
  13. if BSP_USING_UART
  14. config BSP_USING_UART2
  15. bool "Enable UART2"
  16. default y
  17. endif
  18. endmenu
  19. menu "Board extended module Drivers"
  20. endmenu
  21. endmenu