Kconfig 654 B

12345678910111213141516171819202122232425262728293031323334353637
  1. menu "Hardware Drivers Config"
  2. config SOC_LPC824
  3. bool
  4. select SOC_LPC824_SERIES
  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 n
  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 n
  20. endif
  21. endmenu
  22. menu "Onboard Peripheral Drivers"
  23. endmenu
  24. menu "Board extended module Drivers"
  25. endmenu
  26. endmenu