Accoring to the data sheet this means the module is ready. I try to type “AT” into the command line and get no response. When I try to send a SMS by sending “AT+CMGS:” LynxTerm freezes.
Does anyone have any suggestions. I think it is probably a setting I am missing in Lynxterm, but I could really use somee help.
I have same module and i have problems with PC - SM5100B communication. I got no respond on any AT command. I have tried x-ctu, putty, LynxTerm but nothing works well. As replay on power on button i get x-es and dots… i try also flow control, all baud rates up to 460800, data bits :8, parity: none, stop bits: 1
LynxTerm doesn’t support 460800 baud rate as i figured.
I’m also having connection problems with the gsm shield and hope that anyone could help we. The exact problem is a frame error (SerialError.Frame). I’ve connected the shield on top of the Fez Panda II. And my code to to connect to the shield looks as follows.
SerialPort gsmSerailPort = new SerialPort(Serial.COM1, 9600, Parity.None, 8, StopBits.One);
gsmSerailPort.Handshake = Handshake.None;
gsmSerailPort.Open();
Then I send data to the port with the following code
byte OutBuffer = System.Text.Encoding.UTF8.GetBytes(cmd + endline); //where cmd is some at command string