You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to receive SMS on T-Mobile Dev Edge Devkit with muRata TYPE1SC modem but it seems not to receive them. I have set the log level for "+CMTI:" message to ERR in on_cmd_unsol_sms() and I am calling modem_context->recv_sms() periodically but none of them seems to work. Were SMS tested on this modem and is that possible that I have missed some configuration switch? Once I put the SIM card in my phone the messages come, so the SIM is operational and network works, but apparently not in the configuration with this particular modem. I would appreciate any advice how to deal with TYPE1SC in this matter.
The text was updated successfully, but these errors were encountered:
The driver tries to read all messages in binary mode so if there is any text message on SIM it fails.
The driver returns strlen(sms->msg) as the sms length, which is not helpful for PDU mode and messages containing nullbytes.
The driver tries to receive all messages and then copies one of them to inout parameter sms and deletes everything with AT+CMGD command, so the user is not even aware of the fact that there might have been more than one message received and read.
The “binary mode” reads PDUs; storage location does not impact the functionality of PDU mode (reference: 3GPP TS 27.005)
The PDU is in hex, strlen is valid for reading the length of the hex string.
"The driver tries to receive all messages [...] and deletes everything"; The driver deletes all PDUs associated with the message it returns. Generally it only deletes one message, however there is handling for concatenated SMS where one “single” message is actually composed of a number of separate SMS.
As for SMS being validated, it is validated working on this modem, however I’m curious of the SIM utilized here: the SIMs provided with DevEdge are CAT-M SIMs, I would not expect them to function in a standard cell phone, so I’m curious of the exact details of this test.
I am trying to receive SMS on T-Mobile Dev Edge Devkit with muRata TYPE1SC modem but it seems not to receive them. I have set the log level for "+CMTI:" message to ERR in on_cmd_unsol_sms() and I am calling modem_context->recv_sms() periodically but none of them seems to work. Were SMS tested on this modem and is that possible that I have missed some configuration switch? Once I put the SIM card in my phone the messages come, so the SIM is operational and network works, but apparently not in the configuration with this particular modem. I would appreciate any advice how to deal with TYPE1SC in this matter.
The text was updated successfully, but these errors were encountered: