Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: Socket lwip-sys lwip
Dependents: AbitUSBModem_HTTPTest AbitUSBModem_MQTTTest AbitUSBModem_WebsocketTest AbitUSBModem_SMSTest
Fork of VodafoneUSBModem by
Diff: at/ATCommandsInterface.h
- Revision:
- 79:a6ac8206a58d
- Parent:
- 59:593fb493172f
- Child:
- 83: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 };
