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-11-15 18:46:28 +08:00
|
|
|
if GetDepend(['NRFX_USING_UART']):
|
|
|
|
src += ['drv_uart.c']
|
|
|
|
else:
|
|
|
|
src += ['drv_uarte.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-11-24 00:49:27 +08:00
|
|
|
|
|
|
|
if GetDepend(['BSP_USING_I2C']):
|
|
|
|
src += ['drv_i2c.c']
|
2020-05-05 13:18:01 +08:00
|
|
|
|
2020-05-25 12:04:04 +08:00
|
|
|
if GetDepend(['BSP_USING_SPI']):
|
|
|
|
src += ['drv_spi.c']
|
2020-08-01 15:54:31 +08:00
|
|
|
|
2020-07-20 20:40:50 +08:00
|
|
|
if GetDepend(['BSP_USING_GPIO']):
|
|
|
|
src += ['drv_gpio.c']
|
2020-08-18 22:11:50 +08:00
|
|
|
|
|
|
|
if GetDepend(['BSP_USING_SAADC']):
|
|
|
|
src += ['drv_adc.c']
|
2020-08-01 15:54:31 +08:00
|
|
|
|
|
|
|
if GetDepend(['BSP_USING_PWM']):
|
|
|
|
src += ['drv_pwm.c']
|
2020-05-25 12:04:04 +08:00
|
|
|
|
2020-08-22 21:45:37 +08:00
|
|
|
if GetDepend(['BSP_USING_WDT']):
|
|
|
|
src += ['drv_wdt.c']
|
|
|
|
|
2020-09-14 01:09:07 +08:00
|
|
|
if GetDepend(['BSP_USING_ONCHIP_RTC']):
|
|
|
|
src += ['drv_rtc.c']
|
2021-11-23 22:24:08 +08:00
|
|
|
|
|
|
|
if GetDepend(['BSP_USING_TIM']):
|
|
|
|
src += ['drv_hwtimer.c']
|
2020-09-14 01:09:07 +08:00
|
|
|
|
2020-04-14 22:17:27 +08:00
|
|
|
path = [cwd]
|
|
|
|
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
|
|
|
|
|
|
|
|
Return('group')
|