What happens if I read an SMS data from a modem a while, let's say 10min, after the modem receives the SMS?
Does it keep the SMS message inside? What if several SMS messages are received by the modem?
process
1. Open a socket
2. Send "AT+CNMI=3,2,0,1" to a modem to enable SMS notification
2. sleep for 10 min
3. poll with the socket
4. Can you receive the SMS message?
I tested this sleeping for 2min and can receive SMS.
Thank you in advance.