28 lines
457 B
Python
28 lines
457 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
|
||
|
stm32f4xx_it.c
|
||
|
usart.c
|
||
|
""")
|
||
|
|
||
|
# add Ethernet drivers.
|
||
|
if GetDepend('RT_USING_LWIP'):
|
||
|
src += ['stm32f4xx_eth.c']
|
||
|
|
||
|
# add gpio drivers.
|
||
|
if GetDepend('RT_USING_PIN'):
|
||
|
src += ['gpio.c']
|
||
|
|
||
|
CPPPATH = [cwd]
|
||
|
|
||
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|
||
|
|