Kconfig 606 B

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