mirror of
https://github.com/flyingcys/realtek_ameba.git
synced 2025-01-28 08:05:19 +00:00
19 lines
351 B
Python
19 lines
351 B
Python
import rtconfig
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
src = Split('''
|
|
os/rtthread_service.c
|
|
realtek/8711b/rtl8710b_startup.c
|
|
realtek/8711b/app_start.c
|
|
realtek/common/wifi/wifi_conf.c
|
|
''')
|
|
|
|
path = [cwd,
|
|
cwd + '/os',
|
|
cwd + '/realtek/8711b/include']
|
|
|
|
group = DefineGroup('rtt_patch', src, depend = [''], CPPPATH = path)
|
|
|
|
Return('group')
|