[bsp][pico]update: add drv_soft_spi (#7598)

This commit is contained in:
Shicheng Chu
2023-06-04 08:16:06 +08:00
committed by GitHub
parent 5d299ffdcd
commit bf07f4183e
4 changed files with 317 additions and 1 deletions
+13 -1
View File
@@ -1,9 +1,21 @@
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
src = []
CPPPATH = [cwd]
if GetDepend('BSP_USING_PIN'):
src += ['drv_gpio.c']
if GetDepend('BSP_USING_UART'):
src += ['drv_uart.c']
if GetDepend('BSP_USING_SOFT_I2C'):
src += ['drv_soft_i2c.c']
if GetDepend('BSP_USING_SOFT_SPI'):
src += ['drv_soft_spi.c']
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')