Hello,
I've written a shell cmd on the 9160DK to send an sms. it handles getting the data in the correct has the following format,
sms <len> <pdu data>
I've used the site http://rednaxela.net/pdu.php to generate the <pdu data>, which with the help of a clip board, I make the output from the web form
AT+CMGS=24
0001000B919127135013F600000CC8329BFD0639DF72727A0C
to be
sms 24 0001000B919127135013F600000CC8329BFD0639DF72727A0C
which does the following..
collar$ sms 24 0001000B919127135013F600000CC8329BFD0639DF72727A0C
Sending: AT+CNMI=3,2,0,1
OK
Sending: AT+CMGF=0
OK
0001000B919127135013F6000016C3B01B941686E7E939685E76934161D0BC3DFF01
+CMGS: 15
OK
So what does +CMGS: 15 mean? -- the manual suggests it's a Message reference. Is this just a count of messages sent? Why do I never see a <ackpdu> on the CMGS response?
Curious,