SConscript 501 字节
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 22
if GetDepend(['BSP_USING_SPI']):
    src += ['drv_spi.c']

S
supperthomas 已提交
23 24 25 26 27
path =  [cwd]

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

Return('group')