35 lines
867 B
Python
35 lines
867 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
# add the general drivers.
|
|
src = Split('''
|
|
board.c
|
|
''')
|
|
|
|
# add gpio code
|
|
if GetDepend('RT_USING_PIN'):
|
|
src += ['drv_gpio.c']
|
|
|
|
# add serial driver code
|
|
if GetDepend('BSP_USING_UART0') or GetDepend('BSP_USING_UART1') or GetDepend('BSP_USING_UART2') or GetDepend('BSP_USING_UART3') or \
|
|
GetDepend('BSP_USING_UART4') or GetDepend('BSP_USING_UART5'):
|
|
src += ['drv_uart.c']
|
|
|
|
# add spi driver code
|
|
if GetDepend('BSP_USING_SPI0') or GetDepend('BSP_USING_SPI1') or GetDepend('BSP_USING_SPI2'):
|
|
src += ['drv_spi.c']
|
|
|
|
# add i2c driver code
|
|
if GetDepend('BSP_USING_I2C0') or GetDepend('BSP_USING_I2C1'):
|
|
src += ['drv_i2c.c']
|
|
|
|
# add can driver code
|
|
if GetDepend('BSP_USING_CAN'):
|
|
src += ['drv_can.c']
|
|
|
|
CPPPATH = [cwd]
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|