local fork

Dependencies:   Socket USBHostWANDongle_bleedingedge lwip-sys lwip

Dependents:   Encrypted

Fork of VodafoneUSBModem_bleedingedge by Donatien Garnier

Revision:
75:a6ac8206a58d
Parent:
57:593fb493172f
Child:
79:897a0de9d668
--- a/at/ATCommandsInterface.h	Wed Dec 19 09:32:58 2012 +0000
+++ b/at/ATCommandsInterface.h	Wed Jan 09 16:13:50 2013 +0000
@@ -82,6 +82,10 @@
   //Close connection
   int close();
   
+  // pause at processing
+  void pause();
+  void restart();
+  
   bool isOpen();
 
   class ATResult
@@ -146,7 +150,7 @@
   Mutex m_processingMtx;
   Thread m_processingThread;
 
-  Mutex m_eventsMgmtMtx; //Lock events use within the calling thread
+  Mutex m_eventsMgmtMtx; // locks access to event handler management (adding/removing handlers)
   Mutex m_eventsProcessingMtx; //Lock events use within the processing thread
 };