6ec6285e1b
1. Add NUC980 Chili board supporting. 2. Correct NuMicro.h including. 3. Implement rt_hw_us_delay system call function. 4. Move board.c to drv_common.c for M480 and M2354 series.
15 lines
273 B
Python
15 lines
273 B
Python
# RT-Thread building script for component
|
|
|
|
from building import *
|
|
|
|
|
|
Import('RTT_ROOT')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c') + Glob('*.cpp')
|
|
CPPPATH = [ cwd ]
|
|
|
|
group = DefineGroup('board', src, depend = [''], CPPPATH = CPPPATH)
|
|
Return('group')
|