d3131ee55f
(1) Support NK-N9H30 board. (2) Change Mutex's flag to RT_IPC_FLAG_PRIO from RT_IPC_FLAG_FIFO.
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')
|