-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 76ccdcd
Showing
14 changed files
with
2,567 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
## 腾讯 WiFi设备一键配网协议 | ||
|
||
# 启用(in rt-thread) | ||
``` | ||
//rtconfig.h | ||
#define PKG_USING_AIRKISS_OPEN | ||
#define AIRKISS_OPEN_DEMO_ENABLE /* airkiss应用示例 */ | ||
``` | ||
|
||
# 示例 | ||
- [在rt-thread中应用](osdep/rtthread/airkiss_demo.c) | ||
- [电脑模拟测试](osdep/qt/akWorker.cpp) | ||
|
||
# 参考 | ||
- [博客文章](https://blog.csdn.net/lb5761311/article/details/77945848) | ||
|
||
# 测试结果 | ||
- [报告](doc/test-report.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Import('RTT_ROOT') | ||
Import('rtconfig') | ||
from building import * | ||
|
||
cwd = GetCurrentDir() | ||
CPPPATH = [cwd] | ||
|
||
src = Split(''' | ||
airkiss.c | ||
''') | ||
|
||
if GetDepend('AIRKISS_OPEN_DEMO_ENABLE'): | ||
src += ['osdep/rtthread/airkiss_demo.c'] | ||
|
||
group = DefineGroup('airkissOpen', src, depend = ['PKG_USING_AIRKISS_OPEN'], CPPPATH = CPPPATH) | ||
|
||
Return('group') |
Oops, something went wrong.