-
Notifications
You must be signed in to change notification settings - Fork 184
add NB-IOT me3616 #91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
|
||
| #ifdef AT_DEVICE_USING_ME3616 | ||
|
|
||
| #define ME3616_DEEP_SLEEP_EN 0//module support deep sleep mode |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
DEEP_SLEEP 模式是否可以做成 menuconfig 中功能配置,或者 at_device_control 函数中控制,而非在代码中写死
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
目前模块不支持DEEP_SLEEP 模式,现在只是将功能代码保留下,方便以后功能升级。可以修改这个宏定义为:
#ifndef ME3616_DEEP_SLEEP_EN
#define ME3616_DEEP_SLEEP_EN 0//module support deep sleep mode
#endif
这样可以在menuconfig 中增加功能配置。可好?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
好的
| goto __exit; | ||
| } | ||
|
|
||
| at_resp_set_info(resp, CONN_RESP_SIZE, 0, (45*RT_TICK_PER_SECOND)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
45 秒的超时在实际使用中是不是有点长,可根据实际连接情况优化一下等待时间
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
测试验证过的,最长返回结果时间为45秒.如果改短可能无法获取返回结果.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
可以,那就不用改动
|
感谢你的支持和贡献,确认一下,相关网络软件包和功能都有测试通过吗? |
|
此软件包以经过2周测试优化过了。 |
No description provided.