rt-thread-official/bsp/at91/at91sam9260/drivers/SConscript

34 lines
629 B
Python
Raw Normal View History

Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = os.path.join(str(Dir('#')), 'drivers')
# add the general drvers.
src = Split("""
board.c
usart.c
""")
# add Ethernet drvers.
if GetDepend('RT_USING_LED'):
2023-01-09 10:14:23 +08:00
src += ['led.c']
if GetDepend('RT_USING_SDIO'):
2023-01-09 10:14:23 +08:00
src += ['at91_mci.c']
if GetDepend('RT_USING_LWIP'):
2023-01-09 10:14:23 +08:00
src += ['macb.c']
if GetDepend('RT_USING_I2C') and GetDepend('RT_USING_I2C_BITOPS'):
2023-01-09 10:14:23 +08:00
src += ['at91_i2c_gpio.c']
if GetDepend('RT_USING_MTD_NAND'):
src += ['at91_nand.c']
2023-01-09 10:14:23 +08:00
CPPPATH = [cwd]
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')