Kconfig 763 B

12345678910111213141516171819202122232425262728293031323334353637
  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_STM32_UART_V1_TX_TIMEOUT
  15. int "UART TX timeout"
  16. default 2000
  17. depends on RT_USING_SERIAL_V1
  18. config BSP_USING_UART3
  19. bool "Enable UART3"
  20. default y
  21. endif
  22. source "$(BSP_DIR)/../libraries/HAL_Drivers/drivers/Kconfig"
  23. endmenu
  24. menu "Board extended module Drivers"
  25. endmenu
  26. endmenu