Kconfig 583 B

1234567891011121314151617181920212223242526272829303132
  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_UART3
  15. bool "Enable UART3"
  16. default y
  17. endif
  18. source "$BSP_DIR/../libraries/HAL_Drivers/drivers/Kconfig"
  19. endmenu
  20. menu "Board extended module Drivers"
  21. endmenu
  22. endmenu