2018-12-18 21:01:03 +08:00
|
|
|
# RT-Thread building script for component
|
|
|
|
|
|
|
|
from building import *
|
|
|
|
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
src = Split('''
|
|
|
|
board.c
|
2018-12-23 14:11:25 +08:00
|
|
|
heap.c
|
2018-12-18 21:01:03 +08:00
|
|
|
drv_uart.c
|
2019-03-18 16:58:16 +08:00
|
|
|
drv_io_config.c
|
2018-12-18 21:01:03 +08:00
|
|
|
''')
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
|
2019-03-19 11:01:15 +08:00
|
|
|
if GetDepend('RT_USING_PIN'):
|
|
|
|
src += ['drv_gpio.c']
|
|
|
|
|
2019-03-12 17:29:20 +08:00
|
|
|
if GetDepend('BSP_USING_LCD'):
|
|
|
|
src += ['drv_lcd.c']
|
|
|
|
|
2018-12-18 21:01:03 +08:00
|
|
|
if GetDepend('RT_USING_HWTIMER'):
|
|
|
|
src += ['drv_hw_timer.c']
|
|
|
|
|
|
|
|
if GetDepend('RT_USING_CPUTIME'):
|
|
|
|
src += ['drv_cputime.c']
|
|
|
|
|
|
|
|
if GetDepend('RT_USING_I2C'):
|
|
|
|
src += ['drv_i2c.c']
|
|
|
|
|
|
|
|
if GetDepend('RT_USING_SPI'):
|
|
|
|
src += ['drv_spi.c']
|
|
|
|
|
|
|
|
if GetDepend('RT_USING_PWM'):
|
|
|
|
src += ['drv_pwm.c']
|
|
|
|
|
|
|
|
if GetDepend('RT_USING_WDT'):
|
|
|
|
src += ['drv_wdt.c']
|
|
|
|
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
|
|
|
|
Return('group')
|