a library to use GPRS like ethernet or wifi, which makes it possible to connect to the internet with your GPRS module

Dependencies:   BufferedSerial

Dependents:   ThinkSpeak_Test roam_v1 roam_v2 finalv3

Fork of GPRSInterface by wei zou

Revision:
13:379ce1d51b88
Parent:
0:8ccbd963e74d
--- a/GPRSInterface.cpp	Tue Mar 10 03:11:38 2015 +0000
+++ b/GPRSInterface.cpp	Fri Apr 03 15:44:04 2015 +0800
@@ -22,14 +22,13 @@
 
 #include "GPRSInterface.h"
 
-GPRSInterface::GPRSInterface(PinName tx, PinName rx, int baudRate, const char* apn, const char* userName, const char *passWord) : GPRS(tx,rx,baudRate,apn,userName,passWord)
+GPRSInterface::GPRSInterface(PinName tx, PinName rx, const char* apn, const char* userName, const char *passWord) : GPRS(tx, rx, apn, userName, passWord)
 {
     ip_set = false;
 }
 
 int GPRSInterface::init()
 {
-    reset();
     return 0;
 }