Please refer to the main Knowlegdebase page for modem-independent configuration tips.
Super SIM does not support NB-IoT.
Only configure the modem's Radio Access Technology (RAT) preference for Cat-M1. To do so, issue AT#WS46=0
.
A parameter of 2 instead of 0 indicates both Cat-M1 and NB-IoT. Do not select 1 (NB-IoT only), and we strongly recommend you avoid 2
in order to prevent the modem from attempting to connect to NB-IoT networks if any are nearby. Such attempts will always be unsuccessful. The default value is 0.
To set the ME910C1 to force data-centric attachment, issue AT+CEMODE=2
.
The parameter's value is as follows:
0
= PS mode 2: EPS only, data centric1
= CS/PS mode 1: voice centric2
= CS/PS mode 2: data centric3
= PS mode 1: EPS only, voice centricThis setting is non-volatile.
AT+CGDCONT=1,"IP","super"
.AT#SGACT=1,1
.This second command will yield the IP address.
To perform a ping to a remote host after bringing up a connection as described above, issue AT#PING="8.8.8.8"
. This will yield:
1#PING: 01,"8.8.8.8",2,1092#PING: 02,"8.8.8.8",1,1093#PING: 03,"8.8.8.8",1,1094#PING: 04,"8.8.8.8",1,1095OK
Set the target server: AT#HTTPCFG=0,"jsonplaceholder.typicode.com"
.
0
is the HTTP "profile ID".GET
a resource: AT#HTTPQRY=0,0,"/todos/1"
.
0
is the request method: 0
= GET
.The modem will issue an outcome URC: #HTTPRING: 0,200,"application/json",83
.
Read the data: AT#HTTPRCV=0,0
.
0
= all.The modem will return the data:
1<<<{2"userId": 1,3"id": 1,4"title": "delectus aut autem",5"completed": false6}
The ME910C1 supports the eDRX and PSM low-power modes. The commands to enable each of these are:
1AT+CEDRXS=12AT+CPSMS=1
See also AT#CEDRXS
in the ME910C1 Series AT Command Manual for extended eDRX settings, and AT#CPSMS
for further Power Saving Mode settings.
Using these features, but especially PSM, can make the modem inaccessible to the terminal during its sleep time. It's best to experiment with these features locally. To disable all power saving, send:
1AT+CEDRXS=02AT+CPSMS=0
You can learn more about implementing these modes in our low-power usage documentation.
None at this time.