00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054 #ifndef _SerialIO_H
00055 #define _SerialIO_H
00056
00057 #include <termios.h>
00058 #include <sys/select.h>
00059
00060 #include <string>
00061 #include <string.h>
00062
00063 namespace brics_oodl {
00067 class SerialIO
00068 {
00069 public:
00070
00072 enum HandshakeFlags
00073 {
00074 HS_NONE,
00075 HS_HARDWARE,
00076 HS_XONXOFF
00077 };
00078
00080 enum ParityFlags
00081 {
00082 PA_NONE,
00083 PA_EVEN,
00084 PA_ODD,
00085
00086 PA_MARK,
00087 PA_SPACE
00088 };
00089
00091 enum StopBits
00092 {
00093 SB_ONE,
00094 SB_ONE_5,
00095 SB_TWO
00096 };
00097
00099 SerialIO();
00100
00102 virtual ~SerialIO();
00103
00108 void setDeviceName(const char *Name) { m_DeviceName = Name; }
00109
00114 void setBaudRate(int BaudRate) { m_BaudRate = BaudRate; }
00115
00121 void changeBaudRate(int BaudRate);
00122
00128 void setMultiplier(double Multiplier = 1) { m_Multiplier = Multiplier; };
00129
00133 void SetFormat(int ByteSize, ParityFlags Parity, int StopBits)
00134 { m_ByteSize = ByteSize; m_Parity = Parity; m_StopBits = StopBits; }
00135
00139 void setHandshake(HandshakeFlags Handshake) { m_Handshake = Handshake; }
00140
00146 void setBufferSize(int ReadBufSize, int WriteBufSize)
00147 { m_ReadBufSize = ReadBufSize; m_WriteBufSize = WriteBufSize; }
00148
00153 void setTimeout(double Timeout);
00154
00161 void setBytePeriod(double Period);
00162
00167 int open();
00168
00172 void close();
00173
00181 int readBlocking(char *Buffer, int Length);
00182
00183
00190 int readNonBlocking(char *Buffer, int Length);
00191
00197 int write(const char *Buffer, int Length);
00198
00202 int getSizeRXQueue();
00203
00204
00207 void purge()
00208 {
00209 ::tcflush(m_Device, TCIOFLUSH);
00210 }
00211
00214 void purgeRx() {
00215 tcflush(m_Device, TCIFLUSH);
00216 }
00217
00222 void purgeTx() {
00223 tcflush(m_Device, TCOFLUSH);
00224 }
00225
00230 void flushTx() {
00231 tcdrain(m_Device);
00232 }
00233
00234 protected:
00235 ::termios m_tio;
00236 std::string m_DeviceName;
00237 int m_Device;
00238 int m_BaudRate;
00239 double m_Multiplier;
00240 int m_ByteSize, m_StopBits;
00241 ParityFlags m_Parity;
00242 HandshakeFlags m_Handshake;
00243 int m_ReadBufSize, m_WriteBufSize;
00244 double m_Timeout;
00245 ::timeval m_BytePeriod;
00246 bool m_ShortBytePeriod;
00247 };
00248
00249 }
00250 #endif //
00251