2018-12-08 10:44:56 +08:00
|
|
|
# RT-Thread building script for component
|
|
|
|
|
|
|
|
from building import *
|
|
|
|
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
src = Split('''
|
|
|
|
board.c
|
|
|
|
pin_mux.c
|
|
|
|
clock_config.c
|
|
|
|
fsl_host.c
|
2023-03-06 08:43:58 +08:00
|
|
|
interrupt.c
|
|
|
|
trap_gcc.S
|
2018-12-08 10:44:56 +08:00
|
|
|
''')
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
|
|
|
|
Return('group')
|