Kconfig 546 B

12345678910111213141516171819202122
  1. menu "Hardware Drivers Config"
  2. menu "On-chip Peripheral Drivers"
  3. config BSP_USING_GPIO
  4. bool "Enable GPIO"
  5. select RT_USING_PIN
  6. default y
  7. menu "UART Drivers"
  8. config BSP_USING_UART0
  9. bool "Enable UART0 PA2/3(R/T)"
  10. select RT_USING_SERIAL
  11. default y
  12. config BSP_USING_UART1
  13. bool "Enable UART1 PC2/3(R/T)"
  14. select RT_USING_SERIAL
  15. default n
  16. endmenu
  17. endmenu
  18. endmenu