Kconfig 741 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. menu "Hardware Drivers Config"
  2. config SOC_STM32H747XI
  3. bool
  4. select SOC_SERIES_STM32H7
  5. select RT_USING_COMPONENTS_INIT
  6. select RT_USING_USER_MAIN
  7. select RT_USING_CACHE
  8. default y
  9. menu "Onboard Peripheral Drivers"
  10. endmenu
  11. menu "On-chip Peripheral Drivers"
  12. config BSP_USING_GPIO
  13. bool "Enable GPIO"
  14. select RT_USING_PIN
  15. default y
  16. menuconfig BSP_USING_UART
  17. bool "Enable UART"
  18. default y
  19. select RT_USING_SERIAL
  20. if BSP_USING_UART
  21. config BSP_USING_UART1
  22. bool "Enable UART1"
  23. default y
  24. endif
  25. source "../libraries/HAL_Drivers/Kconfig"
  26. endmenu
  27. menu "Board extended module Drivers"
  28. endmenu
  29. endmenu