5810f4de7d
* add soft-spi * add spi-bit-ops.c/h to components/drivers/spi * add a drv_soft_spi example for gd32303e-eval Signed-off-by: kyle <kylepengchn@163.com> * Fixed the format and the certificate. Signed-off-by: kyle <kylepengchn@163.com> * Update the certificate data. Signed-off-by: kyle <kylepengchn@163.com>
38 lines
686 B
Python
38 lines
686 B
Python
Import('RTT_ROOT')
|
|
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = os.path.join(str(Dir('#')), 'drivers')
|
|
|
|
# add the general drivers.
|
|
src = Split("""
|
|
board.c
|
|
drv_usart.c
|
|
""")
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
# add spi drivers.
|
|
if GetDepend('RT_USING_SPI'):
|
|
src += ['drv_spi.c']
|
|
|
|
# add softspi drivers.
|
|
if GetDepend('RT_USING_SPI_BITOPS'):
|
|
src += ['drv_soft_spi.c']
|
|
|
|
# add i2c drivers.
|
|
if GetDepend('RT_USING_I2C'):
|
|
src += ['drv_i2c.c']
|
|
|
|
# add pin drivers.
|
|
if GetDepend('RT_USING_PIN'):
|
|
src += ['drv_gpio.c']
|
|
|
|
# add spi flash drivers.
|
|
if GetDepend('RT_USING_SFUD'):
|
|
src += ['drv_spi_flash.c']
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|