1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- # RT-Thread building script for component
- from building import *
- cwd = GetCurrentDir()
- src = []
- path = [cwd]
- path += [cwd + '/config']
- if GetDepend('RT_USING_PIN'):
- src += ['drv_gpio.c']
- if GetDepend('RT_USING_SERIAL'):
- src += ['drv_usart.c']
- if GetDepend('RT_USING_SDIO'):
- src += ['drv_sdio.c']
- if GetDepend('RT_USING_I2C'):
- src += ['drv_soft_i2c.c']
- if GetDepend('RT_USING_WDT'):
- src += ['drv_wdt.c']
- if GetDepend('RT_USING_HWTIMER'):
- src += ['drv_hwtimer.c']
- if GetDepend('RT_USING_PWM'):
- src += ['drv_pwm.c']
- if GetDepend('RT_USING_RTC'):
- src += ['drv_rtc.c']
- if GetDepend('RT_USING_ADC'):
- src += ['drv_adc.c']
- if GetDepend('BSP_USING_IRRX'):
- src += ['drv_irrx.c']
- group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
- objs = [group]
- list = os.listdir(cwd)
- for item in list:
- if os.path.isfile(os.path.join(cwd, item, 'SConscript')):
- objs = objs + SConscript(os.path.join(item, 'SConscript'))
- Return('objs')
|