Implementation of 3G USB Modem Huawei E372

Dependents:   PYRN

Revision:
1:fbf17fb09581
Parent:
0:67daedd6f74f
Child:
2:61ac95f0af72
--- a/PyrnUSBModem.h	Fri Feb 20 16:48:12 2015 +0000
+++ b/PyrnUSBModem.h	Fri Feb 20 17:15:55 2015 +0000
@@ -6,13 +6,17 @@
 #include "USBHost/USBHost3GModule/WANDongle.h"
 #include "USBSerialStream.h"
 #include "ATCommandsInterface.h"
+#include "PPPIPInterface.h"
 
 class PyrnUSBModem {
 private:
     WANDongle dongle;
     USBSerialStream atStream;
+    USBSerialStream pppStream;
     ATCommandsInterface at;
+    PPPIPInterface ppp;
     bool atOpen;
+    bool pppOpen;
 public:
     PyrnUSBModem(USBHost *h);
     bool init();