Kconfig 641 B

12345678910111213141516171819202122232425262728293031323334353637
  1. config TINA_USING_UART0
  2. bool "Using UART0"
  3. select RT_USING_SERIAL
  4. default n
  5. config TINA_USING_UART1
  6. bool "Using UART1"
  7. select RT_USING_SERIAL
  8. default y
  9. config TINA_USING_UART2
  10. bool "Using UART2"
  11. select RT_USING_SERIAL
  12. default y
  13. config TINA_USING_SDIO0
  14. bool "Using SDIO0"
  15. select RT_USING_SDIO
  16. default y
  17. config TINA_USING_SPI0
  18. bool "Using spi0"
  19. select RT_USING_SPI
  20. default y
  21. config TINA_USING_SPI1
  22. bool "Using spi1"
  23. select RT_USING_SPI
  24. default y
  25. config TINA_USING_SPI_FLASH
  26. bool "Using flash"
  27. select TINA_USING_SPI0
  28. select RT_USING_SFUD
  29. default y