2020-04-14 22:17:27 +08:00
|
|
|
Import('RTT_ROOT')
|
|
|
|
Import('rtconfig')
|
|
|
|
from building import *
|
|
|
|
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
|
|
|
|
# add the general drivers.
|
|
|
|
src = Split("""
|
|
|
|
""")
|
|
|
|
|
2020-04-19 17:37:43 +08:00
|
|
|
if GetDepend(['BSP_USING_UART']):
|
2020-04-14 22:17:27 +08:00
|
|
|
src += ['drv_uart.c']
|
2020-04-26 22:44:09 +08:00
|
|
|
|
|
|
|
if GetDepend(['BSP_USING_ON_CHIP_FLASH']):
|
|
|
|
src += ['drv_flash.c']
|
2020-04-14 22:17:27 +08:00
|
|
|
|
2020-05-05 13:18:01 +08:00
|
|
|
if GetDepend(['BSP_USING_QSPI_FLASH']):
|
|
|
|
src += ['drv_qspi_flash.c']
|
|
|
|
|
2020-05-25 12:04:04 +08:00
|
|
|
if GetDepend(['BSP_USING_SPI']):
|
|
|
|
src += ['drv_spi.c']
|
|
|
|
|
2020-04-14 22:17:27 +08:00
|
|
|
path = [cwd]
|
|
|
|
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
|
|
|
|
|
|
|
|
Return('group')
|