SConscript 1.0 KB
Newer Older
S
supperthomas 已提交
1 2 3 4 5 6 7 8 9 10
Import('RTT_ROOT')
Import('rtconfig')
from building import *

cwd = GetCurrentDir()

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

11
if GetDepend(['BSP_USING_UART']):
csnd_nc's avatar
csnd_nc 已提交
12 13 14 15
    if GetDepend(['NRFX_USING_UART']):
        src += ['drv_uart.c']
    else:   
        src += ['drv_uarte.c']   
Thomas_Fly's avatar
Thomas_Fly 已提交
16 17
if GetDepend(['BSP_USING_ON_CHIP_FLASH']):
    src += ['drv_flash.c']
S
supperthomas 已提交
18

19 20
if GetDepend(['BSP_USING_QSPI_FLASH']):
    src += ['drv_qspi_flash.c']
csnd_nc's avatar
csnd_nc 已提交
21 22 23
    
if GetDepend(['BSP_USING_I2C']):
    src += ['drv_i2c.c']
24

S
ShermanShao11 已提交
25 26
if GetDepend(['BSP_USING_SPI']):
    src += ['drv_spi.c']
Thomas_Fly's avatar
Thomas_Fly 已提交
27
    
Thomas_Fly's avatar
Thomas_Fly 已提交
28 29
if GetDepend(['BSP_USING_GPIO']):
    src += ['drv_gpio.c']
G
guohp1128 已提交
30 31 32

if GetDepend(['BSP_USING_SAADC']):
    src += ['drv_adc.c']
Thomas_Fly's avatar
Thomas_Fly 已提交
33 34 35
    
if GetDepend(['BSP_USING_PWM']):
    src += ['drv_pwm.c']
S
ShermanShao11 已提交
36

37 38 39
if GetDepend(['BSP_USING_WDT']):
    src += ['drv_wdt.c']

40 41
if GetDepend(['BSP_USING_ONCHIP_RTC']):
    src += ['drv_rtc.c']
C
chenyingchun0312 已提交
42 43 44
    
if GetDepend(['BSP_USING_TIM']):
    src += ['drv_hwtimer.c']
45

S
supperthomas 已提交
46 47 48 49 50
path =  [cwd]

group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)

Return('group')