AT Command

Description

AT+CIPCSGP configures the device for circuit switch or gprs connectio mode. Under GPRS, the APN is set. Under CSD, dial-number, user name, password and rate are applicable


Support

Module Tutorial

Examples

AT+CIPCSGP=?

+CIPCSGP: 0-CSD,DIAL NUMBER,USER NAME,PASSWORD,RATE(0-3)
+CIPCSGP: 1-GPRS,APN,USER NAME,PASSWORD

OK

AT+CIPCSGP=1,"MYAPN"

OK

KeywordsAT+CIPCSGP syntax, examples, parameters, error, input, response.

With AT Command Tester tool, you can test Simcom TCP/IP feature.

You can also send commands to set up TCP/IP connection in the ‘Script Mode’ tab of the AT Command Tester,


//Check the registration status
AT+CREG?

//Check attach status
AT+CGACT?

//Attach to the network
AT+CGATT=1

//Wait for Attach
WAIT=7

//Start task ans set the APN. Check your carrier APN
AT+CSTT="bluevia.movistar.es"

//Bring up the wireless connection
AT+CIICR

//Wait for bringup
WAIT=6

//Get the local IP address
AT+CIFSR

//Start a TCP connection to remote address. Port 80 is TCP.
AT+CIPSTART="TCP","74.124.194.252","80"

//Set prompt of '>' when module sends data
AT+CIPSPRT=1

//Send the TCP data
AT+CIPSEND
>
GET https://www.m2msupport.net/m2msupport/http_get_test.php HTTP/1.0