rt-thread/bsp/stm32f10x/drivers/SConscript

48 lines
917 B
Python
Raw Normal View History

Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = os.path.join(str(Dir('#')), 'drivers')
2014-09-08 19:53:55 +08:00
# add the general drivers.
src = Split("""
board.c
2013-07-12 18:20:27 +08:00
stm32f10x_it.c
led.c
usart.c
""")
if GetDepend(['RT_USING_PIN']):
src += ['gpio.c']
# add canbus driver.
if GetDepend('RT_USING_CAN'):
src += ['bxcan.c']
2014-09-08 19:53:55 +08:00
# add Ethernet drivers.
if GetDepend('RT_USING_LWIP'):
src += ['dm9000a.c']
2014-09-08 19:53:55 +08:00
# add Ethernet drivers.
if GetDepend('RT_USING_DFS'):
src += ['sdcard.c']
2014-09-08 19:53:55 +08:00
# add Ethernet drivers.
if GetDepend('RT_USING_RTC'):
src += ['rtc.c']
2014-09-08 19:53:55 +08:00
# add Ethernet drivers.
if GetDepend('RT_USING_RTGUI'):
src += ['touch.c']
if rtconfig.RT_USING_LCD_TYPE == 'ILI932X':
src += ['ili_lcd_general.c']
elif rtconfig.RT_USING_LCD_TYPE == 'SSD1289':
src += ['ssd1289.c']
CPPPATH = [cwd]
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')