26 lines
465 B
Python
26 lines
465 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
|
||
|
stm32f1xx_it.c
|
||
|
""")
|
||
|
|
||
|
if GetDepend(['RT_USING_PIN']):
|
||
|
src += ['gpio.c']
|
||
|
if GetDepend(['RT_USING_SERIAL']):
|
||
|
src += ['usart.c']
|
||
|
if GetDepend(['RT_USING_SPI']):
|
||
|
src += ['stm32_spi.c']
|
||
|
|
||
|
|
||
|
CPPPATH = [cwd]
|
||
|
|
||
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|