Import('RTT_ROOT')
Import('rtconfig')
from building import *

cwd = GetCurrentDir()

# add the general drivers.
src = Split("""
""")


if  GetDepend('SOC_RISCV_SERIES_CH32V103'):

    if GetDepend('RT_USING_PIN'):
        src += ['drv_gpio.c']

    if GetDepend(['RT_USING_SERIAL', 'BSP_USING_UART']):
        src += ['drv_usart.c']





path =  [cwd]


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

Return('group')
