Wayne 2006785394
[bsp/nuvoton] Upload missing files. (#6052)
* [bsp/nuvoton] Upload missing files.

Co-authored-by: Wayne Lin <wclin@nuvoton.com>
2022-06-13 21:16:55 +08:00

20 lines
338 B
Python

Import('RTT_ROOT')
from building import *
cwd = GetCurrentDir()
group = []
src = Split("""
lcd_fsa506.c
""")
CPPPATH = [cwd]
if GetDepend('NU_PKG_USING_FSA506_EBI'):
src += Glob('fsa506_ebi.c')
if GetDepend('NU_PKG_USING_FSA506'):
group = DefineGroup('nu_pkgs_fsa506', src, depend = [''], CPPPATH = CPPPATH)
Return('group')