4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-12 01:49:23 +08:00

[DeviceDriver] Add RT_USING_QSPI macro.

This commit is contained in:
armink 2018-11-26 13:34:33 +08:00
parent c19848d63e
commit 7a6034fdf7
2 changed files with 10 additions and 2 deletions

View File

@ -169,6 +169,10 @@ config RT_USING_SPI
default n default n
if RT_USING_SPI if RT_USING_SPI
config RT_USING_QSPI
bool "Enable QSPI mode"
default n
config RT_USING_SPI_MSD config RT_USING_SPI_MSD
bool "Using SD/TF card driver with spi" bool "Using SD/TF card driver with spi"
select RT_USING_DFS select RT_USING_DFS
@ -188,6 +192,7 @@ config RT_USING_SPI
config RT_SFUD_USING_QSPI config RT_SFUD_USING_QSPI
bool "Using QSPI mode support" bool "Using QSPI mode support"
select RT_USING_QSPI
default n default n
config RT_DEBUG_SFUD config RT_DEBUG_SFUD

View File

@ -2,10 +2,13 @@ from building import *
import rtconfig import rtconfig
cwd = GetCurrentDir() cwd = GetCurrentDir()
src = ['spi_core.c', 'spi_dev.c', 'qspi_core.c'] src = ['spi_core.c', 'spi_dev.c']
CPPPATH = [cwd, cwd + '/../include'] CPPPATH = [cwd, cwd + '/../include']
LOCAL_CCFLAGS = '' LOCAL_CCFLAGS = ''
if GetDepend('RT_USING_QSPI'):
src += ['qspi_core.c']
src_device = [] src_device = []
if GetDepend('RT_USING_SPI_WIFI'): if GetDepend('RT_USING_SPI_WIFI'):