PDA

View Full Version : At commands



jam547
- 29th March 2006, 16:40
can anyone share the atcommands for T10. im interfacing a t10 with a pic 16f877 i would like to know the commands for sms being received on the phones. thankx

kamet
- 29th March 2006, 17:12
http://developer.sonyericsson.com/getDocument.do?docId=65054

jam547
- 30th March 2006, 23:20
i have tried the at commands with hyper terminal.....the command that i use for reading the sms on the the phone is AT+CMGR=1 .the commands runs fine but i cant figure out is the how the code will be that i'll burn on pic16f877 that'll continously read the phone memory for sms........

jonno
- 1st April 2006, 15:52
Hi there
This is the way to output a command from the micro to the GSM.


HSEROUT ["AT+CMGD=1",13]
HSERIN [wait("OK")] ' NOT BELTS AND BRACES AS MODEM COULD RETURN"ERROR".
RETURN

It always pays to wait for an OK back from modem.
Hope this helps
Jonno