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