Kconfig 622 B

1234567891011121314151617181920212223242526
  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 PC6/5(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. config BSP_USING_INTER_FLASH
  18. bool "Enable inter flash"
  19. default n
  20. endmenu
  21. endmenu