我的任务是找出哪个GSM调制解调器连接到哪个串行端口,并用python编写一个程序员,它做以下工作。
现在,由于多个SIM卡可以连接到给定的调制解调器,我的任务是找到每个调制解调器中的SIM卡的详细信息。
我使用minicom将AT命令传递给调制解调器。
发布于 2013-05-23 05:50:24
要识别串行端口上连接的调制解调器的类型,可以使用AT命令
ATI Request Identification Information
AT+GMI Request Manufacturer Identification
AT+GMM Request Model Identification
AT+GMR Request Revision Identification
AT+GOI Request Global Object Identification
AT+GSN Request Product Serial Number Identification
AT+CGMI Request Manufacturer Identification
AT+CGMM Request Model Identification
AT+CGMR Request Revision Identification
AT+CGSN Request Product Serial Number Identification
AT+CIMI Request international mobile subscriber identity关于determining which of dualsim,没有标准化的方法来做到这一点。
如果你真的喜欢冒险,并且不怕进入SIM (使用AT+CSIM/AT+CRSM)的不直观和不容易理解的文档领域,你可能会在一些EF中找到一些有用的信息(但我提到这个选项或多或少只是为了完整性...)。
https://stackoverflow.com/questions/16653884
复制相似问题