4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-17 03:33:30 +08:00
Huaqi Fang 25709dca1c bsp/nuclei: Add initial bsp support for Nuclei HummingBird SoC
Signed-off-by: Huaqi Fang <578567190@qq.com>
2020-09-01 08:47:21 +08:00

19 lines
295 B
Python

Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
# add the general drivers.
src = Split("""
""")
if GetDepend(['RT_USING_SERIAL']):
src += ['drv_uart.c']
path = [cwd]
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
Return('group')