This commit is contained in:
FmdAE
2022-03-23 11:03:48 +08:00
committed by GitHub
parent ce51d0b0cc
commit 0f2e9a3afb
114 changed files with 60960 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
# add the general drivers.
src = Split("""
""")
if GetDepend(['RT_USING_PIN']):
src += ['drv_gpio.c']
if GetDepend(['RT_USING_SERIAL']):
src += ['drv_usart.c']
path = [cwd]
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
Return('group')