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.

Problem in Sending Data Through GPRS using SIM300DZ

Status
Not open for further replies.

djahmednawaz

Newbie level 3
Joined
Dec 24, 2010
Messages
4
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,309
I am Sending Data Through GPRS using SIM300DZ
I am making connection by Following commands..
Code:
void connectGPRS()
{
     UART1_Write_Text("AT\r\n");
     Delay_ms(3000);
     UART1_Write_Text("AT+CIPMODE=1\r\n");
     Delay_ms(3000);
     UART1_Write_Text("AT+CLPORT=\"TCP\",\"800\"\r\n");
     Delay_ms(3000);
     UART1_Write_Text("AT+CIPCSGP=1,\"zonginternet\",\"zong\",\"zong\"\r\n");
     Delay_ms(3000);
     UART1_Write_Text("AT+CSTT=\"zonginternet\",\"zong\",\"zong\"\r\n");
     Delay_ms(3000);
     UART1_Write_Text("AT+CIICR\r\n");
     Delay_ms(10000);
     UART1_Write_Text("AT+CIFSR\r\n");
     Delay_ms(3000);
     UART1_Write_Text("AT+CIPSTART=\"TCP\",\"64.86.142.81\",\"800\"\r\n");
     Delay_ms(5000);
}

Through these commands i connect to server successfully. I send any thing to uart its receive on server. But i want to send data through at+cipsend.

How to solve this problem???
 

Though i don't understand what are you trying to ask but i think the following link would be helpful:
**broken link removed**

Regards,
Salman
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top