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

io/MTSSerialFlowControl.h

Committer:
jengbrecht
Date:
2013-12-09
Revision:
0:563b70517320
Child:
2:8d3ea0dfce39

File content as of revision 0:563b70517320:

#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 */