SConscript 1.6 KB
Newer Older
A
abbcc 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Import('RTT_ROOT')
Import('rtconfig')
from building import *

cwd = GetCurrentDir()

# add the general drivers.
src = Split("""
""")

if GetDepend(['RT_USING_PIN']):
    src += ['drv_gpio.c']

if GetDepend(['RT_USING_SERIAL']):
    if GetDepend(['RT_USING_SERIAL_V2']):
        src += ['drv_usart_v2.c']
    else:
        src += ['drv_usart.c']

20 21 22 23 24 25 26 27
if GetDepend(['RT_USING_ADC']):
    src += ['drv_adc.c']

if GetDepend(['RT_USING_DAC']):
    src += ['drv_dac.c']

if GetDepend('BSP_USING_ONCHIP_RTC'):
    src += ['drv_rtc.c']
mysterywolf's avatar
mysterywolf 已提交
28

29
if GetDepend(['RT_USING_I2C']):
30 31
    if GetDepend('BSP_USING_I2C1') or GetDepend('BSP_USING_I2C2') or GetDepend('BSP_USING_I2C3') or GetDepend('BSP_USING_I2C4'):
        src += ['drv_soft_i2c.c']
32 33 34 35 36 37 38 39 40 41

if GetDepend(['RT_USING_SPI']):
    src += ['drv_spi.c']

if GetDepend(['RT_USING_HWTIMER']):
    src += ['drv_hwtimer.c']

if GetDepend(['RT_USING_PWM']):
    src += ['drv_pwm.c']

42
if GetDepend(['BSP_USING_WDT']):
43 44
    src += ['drv_wdt.c']

45 46 47
if GetDepend(['BSP_USING_ETH', 'RT_USING_LWIP']):
    src += ['drv_eth.c']

48 49 50 51 52 53 54 55 56 57 58 59
if GetDepend(['BSP_USING_SDIO']):
    src += ['drv_sdio.c']

if GetDepend(['BSP_USING_ON_CHIP_FLASH', 'SOC_SERIES_APM32F0']):
    src += ['drv_flash/drv_flash_f0.c']

if GetDepend(['BSP_USING_ON_CHIP_FLASH', 'SOC_SERIES_APM32F1']):
    src += ['drv_flash/drv_flash_f1.c']

if GetDepend(['BSP_USING_ON_CHIP_FLASH', 'SOC_SERIES_APM32F4']):
    src += ['drv_flash/drv_flash_f4.c']

A
abbcc 已提交
60 61 62 63 64
src += ['drv_common.c']

path =  [cwd]
path += [cwd + '/config']

65 66 67
if GetDepend('BSP_USING_ON_CHIP_FLASH'):
    path += [cwd + '/drv_flash']

A
abbcc 已提交
68 69 70
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)

Return('group')