SConscript 815 字节
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']):
S
supperthomas 已提交
12
    src += ['drv_uart.c']
Thomas_Fly's avatar
Thomas_Fly 已提交
13 14 15
    
if GetDepend(['BSP_USING_ON_CHIP_FLASH']):
    src += ['drv_flash.c']
S
supperthomas 已提交
16

17 18 19
if GetDepend(['BSP_USING_QSPI_FLASH']):
    src += ['drv_qspi_flash.c']

S
ShermanShao11 已提交
20 21
if GetDepend(['BSP_USING_SPI']):
    src += ['drv_spi.c']
Thomas_Fly's avatar
Thomas_Fly 已提交
22
    
Thomas_Fly's avatar
Thomas_Fly 已提交
23 24
if GetDepend(['BSP_USING_GPIO']):
    src += ['drv_gpio.c']
G
guohp1128 已提交
25 26 27

if GetDepend(['BSP_USING_SAADC']):
    src += ['drv_adc.c']
Thomas_Fly's avatar
Thomas_Fly 已提交
28 29 30
    
if GetDepend(['BSP_USING_PWM']):
    src += ['drv_pwm.c']
S
ShermanShao11 已提交
31

32 33 34
if GetDepend(['BSP_USING_WDT']):
    src += ['drv_wdt.c']

35 36 37
if GetDepend(['BSP_USING_ONCHIP_RTC']):
    src += ['drv_rtc.c']

S
supperthomas 已提交
38 39 40 41 42
path =  [cwd]

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

Return('group')