Files

24 lines
494 B
Python
Raw Permalink Normal View History

2024-09-30 17:06:01 +08:00
Import('AIC_ROOT')
Import('PRJ_KERNEL')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
2025-01-08 19:12:06 +08:00
src = Glob('bt_main.c')
2024-09-30 17:06:01 +08:00
CPPPATH = []
CPPPATH.append(cwd)
CPPPATH.append(cwd + '/bt_core')
src += Glob('bt_os_rtt.c')
src += Glob('bt_os.c')
src += Glob('bt_core/*.c')
2025-01-08 19:12:06 +08:00
src += Glob('hid_control.c')
2024-09-30 17:06:01 +08:00
CPPDEFINES = ['RTT']
myccflags = (' -w')
group = DefineGroup("bt8858a", src, depend = ['AIC_BT_BT8858A'], CPPPATH = CPPPATH, CPPDEFINES=CPPDEFINES, LOCAL_CFLAGS=myccflags)
Return('group')