I'm working a send/receive sms using a dongle (globe tattoo).
But I'm having trouble on retrieving the sms from the local storage not on the sim. Using this command: AT+CPMS=ME
I get an OK result but no list of sms from the local storage.
Is it possible to map the local storage of an usb modem (globe tattoo)?
This should absolutely be possible (as long as
ME
is listed as supported byAT+CPMS=?
). According to the specification, the syntax for the command iswhere just specifying mem1 is fine. However in practice you should always specify both mem1 and mem2 since some phones might not like a split storage location for read/write (and I think some phones will return ERROR for this). So try runnig
AT+CPMS="ME","ME"
(notice the string quotes, if your modem returns OK forAT+CPMS=ME
it is in violation of correct syntax as defined by V.250).