14 lines
350 B
Python
14 lines
350 B
Python
Import('RTT_ROOT')
|
|
from building import *
|
|
|
|
src_bsp = ['application.c', 'startup.c', 'board.c']
|
|
if GetDepend('RT_USING_NEWLIB'):
|
|
src_bsp = src_bsp + ['newlib_stub.c']
|
|
|
|
src_drv = ['uart.c', 'lnn800x480.c']
|
|
src = File(src_bsp + src_drv)
|
|
CPPPATH = [GetCurrentDir()]
|
|
group = DefineGroup('Startup', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|