Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Telit GL868-DUAL does not respond after AT#SD command

Status
Not open for further replies.

war4one

Member level 1
Joined
Jun 26, 2010
Messages
32
Helped
3
Reputation
6
Reaction score
3
Trophy points
1,288
Location
Russia
Activity points
1,435
Telit GL868-DUAL does not respond after AT#SD command.

printf("AT#SIMDET=1\r");
printf("AT#SELINT=2\r");
printf("AT+CGDCONT=1,\"IP\",\"internet.mts.ru\"\r");
printf("AT#USERID=\"mts\"\r");
printf("AT#PASSW=\"mts\"\r");
printf("AT#SCFG=1,1,300,90,600,50\r");
printf("AT#GPRS=1\r");
printf("AT#SD=1,0,80,\"www.google.com\",0,0,0\r");

Module does not respond...
 

I see all responses from modem in the JTAG Watch window. For all responses, he says "OK" and show me IP address after AT#GPRS
 
I also have same problem. I am working with telit GL865 modem. When i tried to connect with Server using AT#SD=3,0,80,"www.telit.com",0,0 ..... There is no response from the Modem. Please somebody help me to know, actually what is the problem so that i can resolve it.
Thanking you
 

I got the solution
you just needs to disable hardware flow control see AT&K0
 
I have the similar issue, my modem freezes after i issue
AT#SKTD=0,80,"www.google.com"
CONNECT

Now it freezes, you cannot write any GET request , it totally stops responding.
I have tried disabling the flow control using
AT&K=0 or AT+FLO=0 but this didn't work for me.

Please suggest any other command.. I am totally stuck.
 

hi
I had same issue.
Remember to put AT&K=0 at starting of program and don't invoke home page.
You can try with below URL and it will definitely work :)

Code:
//Check registration status
AT+CREG?

//Get the configuration of the sockets
AT&K=0
AT#SCFG?

//Check if any socket has been activated
AT#SGACT?

//Activate the socket 1
AT#SGACT=1,1

//Wait for socket activation
WAIT=4

//Dial the socket. Port 80 is TCP connection.
AT#SD=1,0,80,"www.openweathermap.org"

//Wait for the CONNECT message
WAIT=4

//Send the HTTP formatted data
<cr><lf>GET /data/2.5/weather?q=London,uk HTTP/1.1<cr><lf>Host: www.openweathermap.org<cr><lf>Connection:keep-alive<cr><lf>
<cr><lf>
 
Last edited by a moderator:

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top