Reputation: 31
I am using a raspberry pi to communicate with an SL8092 modem from Sierra. I am able to communicate with the device via the /dev/ttyUSB4 using minicom.
Sending AT commands returns the following answers:
> AT
< OK
> AT+CSQ
< +CSQ: 30,99
>AT+COPS
<+COPS: 2
But when sending AT+CIMI or AT+CGSN, I am expecting to get the IMSI and the IMEI. Unfortunately it's not the case - the only answer I get is just "OK".
Am I missing something?
Upvotes: 3
Views: 12465
Reputation: 11
You can try using these AT commands and find out which are valid with your device. This is for the phone so I am not sure it works with your Pi.
You can find out some useful AT commands here: https://atcommands.org/atdb/
Upvotes: 0
Reputation: 386
Have you checked this document?
Free signup on sierrawireless if you don't have login.
From document:
!GRELIMEI
Return the modem’s production TAC (Type Allocation Code).
(TAC is first 8 characters,then padded with zeroes).
For example, if IMEI is 289258158732085, the TAC is 289258150000000.
Usage:
Example: If the modem’s IMEI is 289258158732085, !GRELIMEI returns 289258150000000.
Upvotes: 1