A library for talking to Multi-Tech's Cellular SocketModem Devices.

Dependents:   M2X_dev axeda_wrapper_dev MTS_M2x_Example1 MTS_Cellular_Connect_Example ... more

Revision:
0:563b70517320
Child:
2:8d3ea0dfce39
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/io/MTSSerialFlowControl.h	Mon Dec 09 15:29:35 2013 +0000
@@ -0,0 +1,20 @@
+#ifndef MTSSERIALFLOWCONTROL_H
+#define MTSSERIALFLOWCONTROL_H
+
+#include "mbed.h"
+#include "MTSBufferedIO.h"
+/*
+class MTSSerialFlowControl : public MTSBufferedIO
+{
+public:
+    MTSSerialFlowControl(PinName TXD, PinName RXD, PinName RTS, PinName CTS, int txBufSize, int rxBufSize);
+    ~MTSSerialFlowControl();
+
+private:
+    DigitalIn* rts;
+    DigitalOut* cts;
+    void handleRead();
+    void handleWrite();
+};
+*/
+#endif /* MTSSERIALFLOWCONTROL */
\ No newline at end of file