4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-21 09:13:32 +08:00

22 lines
365 B
Python

from building import *
cwd = GetCurrentDir()
# add the general drivers
src = Split("""
board.c
rtt_board.c
pinmux.c
rw007_port.c
eth_phy_port.c
fal_flash_port.c
trap_gcc.S
""")
CPPPATH = [cwd]
CPPDEFINES=['D45', 'HPM6750']
group = DefineGroup('Board', src, depend = [''], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
Return('group')