0

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)?

Thomas Keuleers
  • 6,075
  • 2
  • 32
  • 35
yoyie yoyie
  • 415
  • 1
  • 8
  • 20

1 Answers1

0

This should absolutely be possible (as long as ME is listed as supported by AT+CPMS=?). According to the specification, the syntax for the command is

+CPMS=<mem1>[,<mem2>[,<mem3>]]

where 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 for AT+CPMS=ME it is in violation of correct syntax as defined by V.250).

hlovdal
  • 26,565
  • 10
  • 94
  • 165