我是靠谱客的博主 清爽路灯,最近开发中收集的这篇文章主要介绍ECX0 4G模块上网流程环境准备example代码举例说明,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

环境准备

拿到SDK,拿到物联网SIM卡,SIM卡注网,然后把ICCID发给运营商开卡,拨号后就能连接公网。

获取ICCID:

root@www:~# at AT+ICCID
+ICCID: 89860918700307661378
OK

拨号成功后:获取到公网地址

rmnet_data0 Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00  
          inet addr:10.252.5.117  Mask:255.255.255.252
          inet6 addr: fe80::7932:c6ef:3a7b:df26/64 Scope:Link
          UP RUNNING  MTU:1500  Metric:1
          RX packets:5 errors:0 dropped:0 overruns:0 frame:0
          TX packets:10 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:538 (538.0 B)  TX bytes:780 (780.0 B)

ping百度:

root@mdm9607-perf:~# ping -I rmnet_data0 -c 10 www.baidu.com
PING www.a.shifen.com (112.80.248.75) from 10.252.5.117 rmnet_data0: 56(84) bytes of data.
64 bytes from 112.80.248.75: icmp_req=1 ttl=53 time=68.9 ms
64 bytes from 112.80.248.75: icmp_req=2 ttl=53 time=77.4 ms
64 bytes from 112.80.248.75: icmp_req=3 ttl=53 time=75.4 ms
64 bytes from 112.80.248.75: icmp_req=4 ttl=53 time=73.4 ms
64 bytes from 112.80.248.75: icmp_req=5 ttl=53 time=71.3 ms
64 bytes from 112.80.248.75: icmp_req=6 ttl=53 time=69.9 ms
64 bytes from 112.80.248.75: icmp_req=7 ttl=53 time=68.3 ms
64 bytes from 112.80.248.75: icmp_req=8 ttl=53 time=76.6 ms
64 bytes from 112.80.248.75: icmp_req=9 ttl=53 time=75.6 ms
64 bytes from 112.80.248.75: icmp_req=10 ttl=53 time=73.8 ms

--- www.a.shifen.com ping statistics ---
10 packets transmitted, 10 received, 0% packet loss, time 9015ms
rtt min/avg/max/mdev = 68.359/73.109/77.405/3.123 ms

example代码

代码路径:ql-ol-sdk/ql-ol-extsdk/example

设置编译环境:source ql-ol-crosstool/ql-ol-crosstool-env-init

编译代码:进入模块测试代码,执行make就可编译

不同的SDK版本之间编译代码,需要解决静态库依赖,运行时解决动态库依赖问题,解决库函数返回失败问题,解决依赖的service问题

举例说明

QMI消息掩码

使用QL_NW_ForbidInd函数,返回-3,设置掩码失败,可能是某些库接口不支持,后面通过更新库二分法查找出libqmiservices.so.1需要更新版本。

多APN拨号的支持

需要ql_manager_server和一些库

最后

以上就是清爽路灯为你收集整理的ECX0 4G模块上网流程环境准备example代码举例说明的全部内容,希望文章能够帮你解决ECX0 4G模块上网流程环境准备example代码举例说明所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部