e03342ff6b
- added new boards: hpm5300evk, hpm5301evklite and hpm6800evk - upgaded hpm_sdk - driver updates and bugfixes - add hpmicro BSPs to CI Signed-off-by: Fan YANG <fan.yang@hpmicro.com>
20 lines
331 B
Python
20 lines
331 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
# add the general drivers
|
|
src = Split("""
|
|
board.c
|
|
rtt_board.c
|
|
pinmux.c
|
|
rw007_port.c
|
|
fal_flash_port.c
|
|
""")
|
|
|
|
CPPPATH = [cwd]
|
|
CPPDEFINES=['D45', 'HPM6750']
|
|
|
|
group = DefineGroup('Board', src, depend = [''], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
|
|
|
|
Return('group')
|