rt-thread-official/bsp/nrf5x/libraries/drivers/SConscript

51 lines
1.0 KiB
Python
Raw Normal View History

2020-04-14 22:17:27 +08:00
Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
# add the general drivers.
src = Split("""
""")
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
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-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
if GetDepend(['BSP_USING_WDT']):
src += ['drv_wdt.c']
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-04-14 22:17:27 +08:00
path = [cwd]
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
Return('group')