Thales Cinterion Modules with Super SIM
Cellular modules covered on this page
General getting started information
Please refer to the main Knowlegdebase page for modem-independent configuration tips.
EXS62-W Cat-M1, NB-IoT
Cat-M1, NB-IoT
Super SIM does not support NB-IoT.
Initialization
Only configure the modem's Radio Access Technology (RAT) preference for Cat-M1. To do so, issue AT^SXRAT=7,7
.
The first parameter is the RAT to connect to immediately. The second is the preferred RAT on re-connection.
A value of 8
indicates NB-IoT, and 10
indicates Cat-M1/NB-IoT dual mode. Do not use 8
, and we strongly recommend that you do not select 10
. This is the default and so you should always command the module to favor Cat-M1. This prevents the modem from spending time attempting to attach to NB-IoT networks, if any are nearby, only to be rejected.
Data-centric attach mode
To set the EXS62-W to force data-centric attachment, issue:
The CEMODE
parameter's value is as follows:
0
= PS mode 2: EPS only, data centric 2
= CS/PS mode 2: data centric
This setting is non-volatile and implemented when the modem is reset.
Bring up a data connection
Set the APN:
AT+CGDCONT=1,"IP","super"
.Activate a PDP context:
AT^SICA=1,1
.
The first parameter of AT^SICA
is the required action: 1
for enable, 0
for disable. The second parameter is the ID of the PDP context to be used to host the connection — it should match the value used in the AT+CGDCONT
command.
Check the device's IP address with AT+CGPADDR=1
.
Perform a ping
To perform a ping to a remote host after bringing up a connection as described above, issue AT^SISX=Ping,1,"8.8.8.8",5,5000
. This will yield:
Perform an HTTP GET
Set at least one DNS server. The first argument is the PDP Context ID:
AT^SICS=1,"dns1","8.8.8.8"
Activate the data connection:
AT^SICA=1,1
Configure the HTTP operation's Internet service profile. This is referenced by its ID, in the range 0-9:
Set profile 0's service type to HTTP:
AT^SISS=0,srvtype,"http"
Set the connection ID to match that of the current PDP context:
AT^SISS=0,conid,"1"
Set the target URL, including the path:
AT^SISS=0,address,"http://ifconfig.co/ip"
Note You can specify HTTP by including the protocol as a URL prefix, or by adding:80
to indicate the required port.Specify the request's HTTP method:
AT^SISS=0,cmd,"get"
Start the Internet service:
AT^SISO=0
The modem will attempt to make the request. You may see these URCs as the response is processed:
The last line above appears when there is data available for you to read. In this case, the header data shows how much. Read 13 bytes:
AT^SISR=0,13
You will see:
Watch for the URC (Unsolicited Response Code)
^SISR: 0,2
. This indicates that all the available data has been read. If you don't see this — perhaps the response's content length was much larger and you only read a portion of it — continue to issueAT^SISR=0,<NUMBER_OF_BYTES_TO_READ>
commands until all the data has been read — i.e., you receive^SISR: 0,2
Close the Internet service:
AT^SISC=0
If you need to provide extra request headers, such Authorization: Basic <API_KEY>
or a custom header required by your server, issue AT^SISS=0,hcprop,"<HEADERS>"
when you are configuring your Internet service profile.
Pass each header in the form <key>: <value>
. Multiple headers can be included by separating them with the sequence \0d\0a
. Don't add a separator after the last header and ensure your headers string is 255 bytes or less.
Tip If you wish to include a User-Agent
header, don't add it to your headers string but instead supply it to the module with AT^SISS=0,hcuseragent,"<USER_AGENT>"
. This will make room in the modem's header store for other headers.
Perform an HTTPS GET
Initialize the module's certificates:
AT^SSECUA="CertStore/TLS/PreconfigureCerts"
Set a DNS server:
AT^SICS=1,"dns1","8.8.8.8"
Activate the connection:
AT^SICA=1,1
Configure the operation's Internet service profile:
Set profile 1's service type to HTTP:
AT^SISS=1,srvtype,"http"
Set the connection ID to match that of the current PDP context ID:
AT^SISS=1,conid,"1"
Set the target URL, including the path:
AT^SISS=1,address,"https://jsonplaceholder.typicode.com/todos/1"
Note You can specify HTTPS by including the protocol as a URL prefix, or by adding:443
to indicate the required port.Specify the request's HTTP method:
AT^SISS=1,cmd,"get"
Open the Internet service:
AT^SISO=1
The connection will be attempted. You will see these URCs:
The last line above indicates there is data available for you to read. In this case, the header data shows how much. Read 83 bytes:
AT^SISR=1,83
You will see:
Watch for the URC
^SISR: 1,2
, which indicates that all the available data has been read. If you don't see this — perhaps the content length was much larger and you only read a portion of it — continue to issueAT^SISR=1,<NUMBER_OF_BYTES_TO_READ>
commands until all the data is read — i.e., you receive^SISR: 1,2
Close the Internet service:
AT^SISC=1
Perform an HTTP(S) POST
Sending data from the modem via an Internet-hosted API follows the paths outlined above for the HTTP and HTTPS protocols. You call AT^SISS=0,cmd,"post"
instead of AT^SISS=0,cmd,"get"
.
The EXS62-W provides a way to load up a small amount (1-255 bytes) of body data: issue AT^SISS=0,hccontent,"<DATA_AS_STRING>"
and AT^SISS=0,hccontlen,0
.
If the size of the data you wish to send is greater than 255 bytes, set the size with AT^SISS=0,hccontlen,<SIZE_IN_BYTES>
and then upload data to the module after opening the Internet service with AT^SISO=0
. Issue AT^SISW=0,<CHUNK_SIZE>
to trigger the modem to input the data over the UART. Up to 1500 bytes can be sent to the modem at a time, and each chunk will be sent out as they are received from your application.
Low-power modes
The EXS62-W supports the eDRX and PSM low-power modes. The commands to enable each of these are:
See also AT^SEDRXS
in the EXS62-W AT Commands Manual for further eDRX settings, and AT+CEDRXRDP
to read dynamic eDRX parameters.
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:
You can learn more about implementing these modes in our low-power usage documentation.
Known issues
The EXS62-W does not support AT+CCID
to retrieve the SIM's ICCID. Instead, issue AT^SIND?
and look for the line commencing ^SIND: iccid,0
.
Additional resources
• EXS62-W AT Commands Manual Thales sign-in required
Last updated