APP_Framework/Framework:add http client module in OTA for KPU model downloading

This commit is contained in:
chunyexixiaoyu
2021-08-30 16:12:52 +08:00
parent 6dbbfd804e
commit 2db749991e
6 changed files with 1805 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
from building import *
import os
cwd = GetCurrentDir()
src = []
if GetDepend(['USING_OTA_MODEL']):
src += ['httpclient.c']
group = DefineGroup('ota model', src, depend = [], CPPPATH = [cwd])
Return('group')