Hi @Guest
From your sentence,I’m sure your mifi’s OS have recognized the UC20 module.I will give some AT command to make sure that UC20 and SIM-card is connect to mifi.
First,you should set right service,apn,username,password at /etc/config/network.You can get them from telecom operators.
Second,log in mifi’OS with UART or telnet or ssh.
Third,sent AT command to UC20
You can use echo -e “AT+xxx \r\n” > /dev/ttyUSB2 command to send AT command to UC20 module,and you can use cat /dev/ttyUSB2 to see result.
For example,
1.Request International Mobile Equipment Identity
Execution command:echo -e “AT+GSN \r\n” > /dev/ttyUSB2
Look for response:cat /dev/ttyUSB2
Correct result:
AT+GSN
861075021617089
OK
Incorrect result:
AT+GSN
ERROR
If you get the a similar number,it means that the UC20’s connection is OK.
- Show SIM‘S ICCID
Execution command:echo -e “AT+QCCID \r\n” > /dev/ttyUSB2
Look for response:cat /dev/ttyUSB2
Correct result:
AT+QCCID
+QCCID: 89860115851079757018
OK
Incorrect result:
AT+CCIDI
ERROR
If you get the a similar number,it means that the connection of SIM-card is OK.
3.Check Network Registration
Execution command:echo -e “AT+ CREG? \r\n” > /dev/ttyUSB2
Look for response:cat /dev/ttyUSB2
Correct result:
AT+CREG?
+CREG: 0,1
OK
Incorrect result:
AT+CREG?
ERROR
If you get the a similar <span style=“line-height: 1.5;”>result</span><span style=“line-height: 1.5;”>,it means that your SIM-card have registered to telecom operators.</span>
4.Signal Quality Report
<span style=“line-height: 1.5;”> Execution command</span>:echo -e “AT+CSQ \r\n” > /dev/ttyUSB2
<span style=“line-height: 1.5;”> Look for response</span>:cat /dev/ttyUSB2
Correct result:
+CSQ: 21,99
OK
Incorrect result:
AT+CSQ
ERROR
This first number is our want to get.I sorry to how <span style=“line-height: 1.5;”>value</span><span style=“line-height: 1.5;”> is OK,but I know the absolute value is </span>the more little the more better.I usual get value is 18~23.
Others AT command,please refer to Quectel_UC20_AT_Commands_Manual_V1.5.pdf. I think you can usr other <span style=“line-height: 1.5;”>AT command</span><span style=“line-height: 1.5;”> correct.</span>