Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. menu "Hardware Drivers Config"
  2. config SOC_STM32F410RB
  3. bool
  4. select SOC_SERIES_STM32F4
  5. select RT_USING_COMPONENTS_INIT
  6. select RT_USING_USER_MAIN
  7. default y
  8. menu "Onboard Peripheral Drivers"
  9. endmenu
  10. menu "On-chip Peripheral Drivers"
  11. config BSP_USING_GPIO
  12. bool "Enable GPIO"
  13. select RT_USING_PIN
  14. default y
  15. menuconfig BSP_USING_UART
  16. bool "Enable UART"
  17. default y
  18. select RT_USING_SERIAL
  19. if BSP_USING_UART
  20. config BSP_USING_UART2
  21. bool "Enable UART2"
  22. default y
  23. config BSP_UART2_RX_USING_DMA
  24. bool "Enable UART2 RX DMA"
  25. depends on BSP_USING_UART2 && RT_SERIAL_USING_DMA
  26. default n
  27. config BSP_USING_UART6
  28. bool "Enable UART6"
  29. default n
  30. config BSP_UART6_RX_USING_DMA
  31. bool "Enable UART6 RX DMA"
  32. depends on BSP_USING_UART6 && RT_SERIAL_USING_DMA
  33. default n
  34. endif
  35. endmenu
  36. menu "Board extended module Drivers"
  37. endmenu
  38. endmenu