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