Skip to content

Commit

Permalink
添加第一版
Browse files Browse the repository at this point in the history
  • Loading branch information
heyuanjie87 committed May 16, 2019
0 parents commit 76ccdcd
Show file tree
Hide file tree
Showing 14 changed files with 2,567 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
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)
17 changes: 17 additions & 0 deletions SConscript
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')
Loading

0 comments on commit 76ccdcd

Please sign in to comment.