19 lines
314 B
Python
19 lines
314 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
# add the general drivers
|
|
src = Split("""
|
|
board.c
|
|
rtt_board.c
|
|
pinmux.c
|
|
fal_flash_port.c
|
|
""")
|
|
|
|
CPPPATH = [cwd]
|
|
CPPDEFINES=['D25', 'HPM5361']
|
|
|
|
group = DefineGroup('Board', src, depend = [''], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
|
|
|
|
Return('group')
|