Kconfig 813 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. menu "Hardware Drivers Config"
  2. config SOC_FM33LC0XX
  3. bool
  4. select SOC_SERIES_FM33LC0XX
  5. select RT_USING_COMPONENTS_INIT
  6. select RT_USING_USER_MAIN
  7. default y
  8. menu "On-chip Peripheral Drivers"
  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_UART0
  15. bool "Enable UART0"
  16. default n
  17. config BSP_USING_UART1
  18. bool "Enable UART1"
  19. default y
  20. config BSP_USING_UART4
  21. bool "Enable UART4"
  22. default n
  23. config BSP_USING_UART5
  24. bool "Enable UART5"
  25. default y
  26. endif
  27. source "libraries/HAL_Drivers/Kconfig"
  28. endmenu
  29. endmenu