Kconfig 904 B

1234567891011121314151617181920212223242526272829303132333435
  1. menu "Hardware Drivers Config"
  2. menu "On-chip Peripheral Drivers"
  3. menu "UART Drivers"
  4. config BSP_USING_UART0
  5. bool "Enable MSS_UART0"
  6. select RT_USING_SERIAL
  7. default y
  8. help
  9. config MSS_UART0
  10. config BSP_USING_UART1
  11. bool "Enable MSS_UART1"
  12. select RT_USING_SERIAL
  13. default y
  14. help
  15. config MSS_UART1
  16. config RT_CONSOLE_DEVICE_NAME
  17. string "the device name for console"
  18. default "uart0"
  19. endmenu
  20. menu "GPIO Drivers"
  21. config BSP_USING_GPIO
  22. bool "Enable MSS_GPIO"
  23. select RT_USING_PIN
  24. default y
  25. help
  26. config MSS_GPIO
  27. endmenu
  28. endmenu
  29. endmenu