• Welcome to Forum.Deepsoftware.Com. Please login or sign up.
 
April 25, 2024, 09:26:59 pm

News:

SMF - Just Installed!


GSM Error: 500

Started by mendes12721, January 26, 2012, 04:35:40 pm

Previous topic - Next topic

mendes12721


Everytime I try to send an SMS using the GSMdemo I get this error!
GSM Error: 500

Using the VT100demo I can connect to the modem
and using
AT+CMGF=1
AT+CMGS="1696"
>Pontos<ctrl+z>

The message is sent and the network sends me back an auto message!

What am I doing wrong?

Roman Novgorodov

Hello

Please check that you are using international phone format for destination address (11 digits)

If it does not help, please upload diagnostic log file.
More details see here:
http://forums.nrcommlib.com/index.php?topic=6.0


Roman Novgorodov
DeepSoftware llc
DeepSoftware llc - The professional components for Delphi/CBuilder/.NET. The high quality custom software development.
Forums.nrCommLib.Com - DeepSoftware Tech Support Forum.

mendes12721

nrcomm1.SendString('AT+CMGF=1');
nrcomm1.SendChar(#13);
nrcomm1.SendString('AT+CMGS="'+trim(edit1.Text)+'"');
nrcomm1.SendChar(#13);
nrcomm1.SendString(trim(memo1.Text));
nrcomm1.SendChar(#26);


Fixed it by doing this!