Why I am not able to receive sms using AT commands?

前端 未结 2 1742
一向
一向 2021-01-19 01:10

I want to send / receive sms using AT commands from my computer to my mobile phone. I connected my phone to my computer using a USB port. My computer detects the modem and I

相关标签:
2条回答
  • 2021-01-19 01:27

    Most of the phones returns Error when some special AT command sent to them and +CNMI is one of that command. It will return error also when send AT+CNMI=?.

    So forget Phones buy a GSM Modem based on RS232 or USB and then try it again.

    0 讨论(0)
  • 2021-01-19 01:39

    Every phone has different capabilities so you should check which values for each parameter are valid for your phone by sending it a

    AT+CNMI=?

    For example my phone doesn't support your example because mode 1 is not supported. For the full syntax of +CNMI you can consult the AT Manual of your manufacturer or the ETSI standard or read this brief tutorial http://www.cellular.co.za/at_etsi.htm

    AT+CNMI is used anyway just to get a notification when a SMS arrives, in order to read the content of the stored SMS you have to use AT+CMGL= or AT+CMGR=.

    Briefly: AT+CMGF=1 ;sets the text mode

    AT+CMGL=? ;tells you which memories are available

    AT+CSCS=? ;tells you which character sets are available

    AT+CSCS="8859-1" ;sets Latin1 as the charset so that you can see eventually accented letters

    AT+CMGL="ALL" ;prints every text message you have stored in your phone

    0 讨论(0)
提交回复
热议问题