2013-01-08 22:40:58 +08:00
|
|
|
Import('RTT_ROOT')
|
|
|
|
Import('rtconfig')
|
|
|
|
from building import *
|
|
|
|
|
|
|
|
cwd = os.path.join(str(Dir('#')), 'drivers')
|
2013-02-21 20:10:54 +08:00
|
|
|
|
2015-06-09 16:26:52 +08:00
|
|
|
# add the general drivers.
|
|
|
|
src = Split("""
|
|
|
|
board.c
|
|
|
|
stm32f10x_it.c
|
|
|
|
usart.c
|
|
|
|
platform.c
|
|
|
|
""")
|
2013-02-21 20:10:54 +08:00
|
|
|
|
2015-06-09 16:26:52 +08:00
|
|
|
# add Ethernet drivers.
|
|
|
|
if GetDepend('RT_USING_LWIP'):
|
|
|
|
src += ['stm32_eth.c']
|
|
|
|
|
|
|
|
if GetDepend('RT_USING_SPI'):
|
|
|
|
src += ['rt_stm32f10x_spi.c']
|
2013-02-21 20:10:54 +08:00
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
CPPPATH = [cwd]
|
|
|
|
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
|
|
|
|
Return('group')
|