Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
at_device
sim76xx
at_device sim7600ce 为什么可以自动识别运营商的类型
发布于 2020-09-02 09:04:39 浏览:1213
订阅该版
```c /* initialize the sim76xx device network connection by command */ static void sim76xx_init_thread_entry(void *parameter) { #define INIT_RETRY 5 #define CPIN_RETRY 5 #define CSQ_RETRY 10 #define CREG_RETRY 10 #define CGREG_RETRY 10 #define CGATT_RETRY 10 #define CCLK_RETRY 10 at_response_t resp = RT_NULL; rt_err_t result = RT_EOK; rt_size_t i, qi_arg[3] = {0}; int retry_num = INIT_RETRY; char parsed_data[20] = {0}; struct at_device *device = (struct at_device *)parameter; struct at_client *client = device->client; resp = at_create_resp(128, 0, rt_tick_from_millisecond(300)); if (resp == RT_NULL) { LOG_E("no memory for resp create."); return; } LOG_D("start init %s device.", device->name); while (retry_num--) { /* power-up sim76xx */ sim76xx_power_on(device); /* wait SIM76XX startup finish, Send AT every 5s, if receive OK, SYNC success*/ if (at_client_wait_connect(SIM76XX_WAIT_CONNECT_TIME)) { result = -RT_ETIMEOUT; goto __exit; } /* disable echo */ AT_SEND_CMD(client, resp, "ATE0"); /* get module version */ AT_SEND_CMD(client, resp, "ATI"); /* show module version */ for (i = 0; i < (int)resp->line_counts - 1; i++) { LOG_D("%s", at_resp_get_line(resp, i + 1)); } /* check SIM card */ rt_thread_mdelay(1000); for (i = 0; i < CPIN_RETRY; i++) { at_obj_exec_cmd(client, resp, "AT+CPIN?"); if (at_resp_get_line_by_kw(resp, "READY")) { LOG_D("%s device SIM card detection failed.", device->name); break; } LOG_I("\"AT+CPIN\" commands send retry..."); rt_thread_mdelay(1000); } if (i == CPIN_RETRY) { result = -RT_ERROR; goto __exit; } /* waiting for dirty data to be digested */ rt_thread_mdelay(10); /* check signal strength */ for (i = 0; i < CSQ_RETRY; i++) { AT_SEND_CMD(client, resp, "AT+CSQ"); at_resp_parse_line_args_by_kw(resp, "+CSQ:", "+CSQ: %d,%d", &qi_arg[0], &qi_arg[1]); if (qi_arg[0] != 99) { LOG_D("%s device signal strength: %d Channel bit error rate: %d", device->name, qi_arg[0], qi_arg[1]); break; } rt_thread_mdelay(1000); } if (i == CSQ_RETRY) { LOG_E("%s device signal strength check failed (%s).", device->name, parsed_data); result = -RT_ERROR; goto __exit; } /* do not show the prompt when receiving data */ AT_SEND_CMD(client, resp, "AT+CIPSRIP=0"); /* check the GSM network is registered */ for (i = 0; i < CREG_RETRY; i++) { AT_SEND_CMD(client, resp, "AT+CREG?"); at_resp_parse_line_args_by_kw(resp, "+CREG:", "+CREG: %s", &parsed_data); if (!strncmp(parsed_data, "0,1", sizeof(parsed_data)) || !strncmp(parsed_data, "0,5", sizeof(parsed_data))) { LOG_D("%s device GSM is registered(%s).", device->name, parsed_data); break; } rt_thread_mdelay(1000); } if (i == CREG_RETRY) { LOG_E("%s device GSM is register failed(%s).", device->name, parsed_data); rt_hw_cpu_reset(); result = -RT_ERROR; goto __exit; } /* check the GPRS network is registered */ for (i = 0; i < CGREG_RETRY; i++) { AT_SEND_CMD(client, resp, "AT+CGREG?"); at_resp_parse_line_args_by_kw(resp, "+CGREG:", "+CGREG: %s", &parsed_data); if (!strncmp(parsed_data, "0,1", sizeof(parsed_data)) || !strncmp(parsed_data, "0,5", sizeof(parsed_data))) { LOG_D("%s device GPRS is registered(%s).", device->name, parsed_data); break; } rt_thread_mdelay(1000); } if (i == CGREG_RETRY) { LOG_E("%s device GPRS is register failed(%s).", device->name, parsed_data); result = -RT_ERROR; goto __exit; } /* check packet domain attach or detach */ for (i = 0; i < CGATT_RETRY; i++) { AT_SEND_CMD(client, resp, "AT+CGATT?"); at_resp_parse_line_args_by_kw(resp, "+CGATT:", "+CGATT: %s", &parsed_data); if (!strncmp(parsed_data, "1", 1)) { LOG_D("%s device Packet domain attach.", device->name); break; } rt_thread_mdelay(1000); } if (i == CGATT_RETRY) { LOG_E("%s device GPRS attach failed.", device->name); result = -RT_ERROR; goto __exit; } /* configure context */ AT_SEND_CMD(client, resp, "AT+CGDCONT=1,\"IP\",\"CMNET\""); /* activate context */ { int net_status = 0; AT_SEND_CMD(client, resp, "AT+NETOPEN?"); at_resp_parse_line_args_by_kw(resp, "+NETOPEN:", "+NETOPEN: %d", &net_status); /* 0 - netwoek close, 1 - network open */ if (net_status == 0) { AT_SEND_CMD(client, resp, "AT+NETOPEN"); } } /* set active PDP context's profile number */ AT_SEND_CMD(client, resp, "AT+CSOCKSETPN=1"); #ifdef RT_USING_RTC /* get real time */ int year, month, day, hour, min, sec; for (i = 0; i < CCLK_RETRY; i++) { if (at_obj_exec_cmd(device->client, at_resp_set_info(resp, 256, 0, 5 * RT_TICK_PER_SECOND), "AT+CCLK?") < 0) { rt_thread_mdelay(500); continue; } /* +CCLK: "18/12/22,18:33:12+32" */ if (at_resp_parse_line_args_by_kw(resp, "+CCLK:", "+CCLK: \"%d/%d/%d,%d:%d:%d", &year, &month, &day, &hour, &min, &sec) < 0) { rt_thread_mdelay(500); continue; } set_date(year + 2000, month, day); set_time(hour, min, sec); break; } if (i == CCLK_RETRY) { LOG_E("%s device GPRS attach failed.", device->name); result = -RT_ERROR; goto __exit; } #endif /* RT_USING_RTC */ /* initialize successfully */ result = RT_EOK; break; __exit: if (result != RT_EOK) { /* power off the sim76xx device */ sim76xx_power_off(device); rt_thread_mdelay(1000); LOG_I("%s device initialize retry...", device->name); } } if (resp) { at_delete_resp(resp); } if (result == RT_EOK) { /* set network interface device status and address information */ sim76xx_netdev_set_info(device->netdev); /* check and create link staus sync thread */ if (rt_thread_find(device->netdev->name) == RT_NULL) { sim76xx_netdev_check_link_status(device->netdev); } LOG_I("%s device network initialize success!", device->name); } else { LOG_E("%s device network initialize failed(%d)!", device->name, result); } } ```
查看更多
2
个回答
默认排序
按发布时间排序
liuduanfei
2020-09-02
这家伙很懒,什么也没写!
肯定有相应指令啊
aozima
2020-09-02
调网络不抓包,调I2C等时序不上逻辑分析仪,就像电工不用万用表!多用整理的好的文字,比截图更省流量,还能在整理过程中思考。
这不挺好嘛,10年前我用模块时还要自己设置,搞错了就不能用。 后面就不设或乱设都可以了,估计是厂家技术支持被搞怕了。
撰写答案
登录
注册新账号
关注者
0
被浏览
1.2k
关于作者
yudongs
这家伙很懒,什么也没写!
提问
1
回答
0
被采纳
0
关注TA
发私信
相关问题
1
【结贴】at_device软件包中对串口接收数据缺少判断导致数据接收异常
2
at client总是出现hardfault?
3
AT组件连接BC26并使用Webclient软件包解析数据错误。URC问题
4
sim800c 为什么最后不用释放rt_free(recv_buf);
5
调试bc26 ,断言错误failed at rt_thread_timeout
6
AT 组件无法正确解析数据
7
有没有大神成功基于AT_Device移植ATK-GM510到RT-thread
8
ntp服务器无法同步问题
9
柿饼M3用at_device来驱动EC200通讯时rt_free断言
10
AT_DEVICE中BC26各项BUG反馈
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
使用百度AI助手辅助编写一个rt-thread下的ONVIF设备发现功能的功能代码
2
RT-Thread 发布 EtherKit开源以太网硬件!
3
rt-thread使用cherryusb实现虚拟串口
4
《C++20 图形界面程序:速度与渲染效率的双重优化秘籍》
5
《原子操作:程序世界里的“最小魔法单位”解析》
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
WIZnet_W5500
ota在线升级
UART
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
at_device
ulog
C++_cpp
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
张世争
8
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
用户名由3_15位
11
个答案
1
次被采纳
KunYi
6
个答案
1
次被采纳
本月文章贡献
程序员阿伟
6
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
Betrayer
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部