mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-19 09:13:30 +08:00
5a61304a09
* add ch579m bsp Author: Tuber <tuber@xyza.cn> Date: Wed Feb 16 07:20:23 2022 +0000 * fix uart reg value error and format code * change file encode to utf-8
16 lines
396 B
Python
16 lines
396 B
Python
Import('RTT_ROOT')
|
|
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
# The set of source files associated with this SConscript file.
|
|
src = Split("""
|
|
""")
|
|
CPPPATH = [cwd + '/StdPeriphDriver/inc', cwd + '/CMSIS/Include']
|
|
|
|
src += ['Startup/startup_ARMCM0.s']
|
|
src += Glob('StdPeriphDriver/*.c')
|
|
|
|
group = DefineGroup('Libraries', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group') |