I am trying to connect GPRS GSM A6 to arduino. Everything works fine, but there is a slight problem. And its that AT+CIPSTART only accepts IP or domain name.
For example this,
AT+CIPSTART="TCP", "xxx.xx.x.xxx", 80
works fine, Or this,
AT+CIPSTART="TCP", "www.google.com", 80
also works fine, but what I am looking for is something like this.
AT+CIPSTART="TCP", "xxx.xx.x.xxx/trackerCode/", 80
That is I want to specify directory along with the ip. But it does not allow me to do this and returns a +CME Error. Is there a way to do this?