c9db6ed151
* [bsp/nuvoton] Support NuMaker-M467HJ BSP and update drivers. * Format files. Co-authored-by: Wayne Lin <wclin@nuvoton.com>
13 lines
246 B
Python
13 lines
246 B
Python
Import('RTT_ROOT')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = [cwd]
|
|
src = Split("""
|
|
sensor_nct7717u.c
|
|
""")
|
|
|
|
group = DefineGroup('nu_pkgs_nct7717u', src, depend = ['NU_PKG_USING_NCT7717U'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|