Kconfig 284 B

1234567891011121314
  1. menu "Platform Driver Configuration"
  2. menu "Select UART Driver"
  3. if RT_USING_SERIAL
  4. config BSP_USING_UART1
  5. bool "Enable UART1"
  6. default y
  7. config BSP_USING_UART2
  8. bool "Enable UART2"
  9. default n
  10. endif
  11. endmenu
  12. endmenu