Kconfig 812 B

123456789101112131415161718192021222324252627282930313233343536
  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. if BSP_USING_UART
  13. config BSP_STM32_UART_V1_TX_TIMEOUT
  14. int "UART TX timeout"
  15. default 1000
  16. depends on RT_USING_SERIAL_V1
  17. config BSP_USING_LPUART1
  18. bool "Enable LPUART1"
  19. default y
  20. endif
  21. source "$(BSP_DIR)/../libraries/HAL_Drivers/drivers/Kconfig"
  22. endmenu
  23. menu "Board extended module Drivers"
  24. endmenu
  25. endmenu