Serialib ::: Simple Serial Library v1.2

serialib.h

00001 
00019 #ifndef SERIALIB_H
00020 #define SERIALIB_H
00021 
00022 
00023 // Used for TimeOut operations
00024 #include <sys/time.h>
00025 // Include for windows
00026 #if defined (_WIN32) || defined( _WIN64)
00027     // Accessing to the serial port under Windows
00028     #include <windows.h>
00029 #endif
00030 
00031 // Include for Linux
00032 #ifdef __linux__
00033     #include <stdlib.h>
00034     #include <sys/types.h>
00035     #include <sys/shm.h>
00036     #include <termios.h>
00037     #include <string.h>
00038     #include <iostream>
00039     // File control definitions
00040     #include <fcntl.h>
00041     #include <unistd.h>
00042     #include <sys/ioctl.h>
00043 #endif
00044 
00045 
00046 
00053 class serialib
00054 {
00055 public:
00056     // Constructor of the class
00057     serialib    ();
00058 
00059     // Destructor
00060     ~serialib   ();
00061 
00062 
00063 
00064     //_________________________________________
00065     // ::: Configuration and initialization :::
00066 
00067 
00068     // Open a device
00069     char    Open        (const char *Device,const unsigned int Bauds);
00070 
00071     // Close the current device
00072     void    Close();
00073 
00074 
00075 
00076     //___________________________________________
00077     // ::: Read/Write operation on characters :::
00078 
00079 
00080     // Write a char
00081     char    WriteChar   (char);
00082 
00083     // Read a char (with timeout)
00084     char    ReadChar    (char *pByte,const unsigned int TimeOut_ms=NULL);
00085 
00086 
00087 
00088     //________________________________________
00089     // ::: Read/Write operation on strings :::
00090 
00091 
00092     // Write a string
00093     char    WriteString (const char *String);
00094     // Read a string (with timeout)
00095     int     ReadString  (   char *String,
00096                             char FinalChar,
00097                             unsigned int MaxNbBytes,
00098                             const unsigned int TimeOut_ms=NULL);
00099 
00100 
00101 
00102     // _____________________________________
00103     // ::: Read/Write operation on bytes :::
00104 
00105 
00106     // Write an array of bytes
00107     char    Write       (const void *Buffer, const unsigned int NbBytes);
00108 
00109     // Read an array of byte (with timeout)
00110     int     Read        (void *Buffer,unsigned int MaxNbBytes,const unsigned int TimeOut_ms=NULL);
00111 
00112 
00113     // _________________________
00114     // ::: Special operation :::
00115 
00116 
00117     // Empty the received buffer
00118     void    FlushReceiver();
00119 
00120     // Return the number of bytes in the received buffer
00121     int     Peek();
00122 
00123 private:
00124     // Read a string (no timeout)
00125     int     ReadStringNoTimeOut  (char *String,char FinalChar,unsigned int MaxNbBytes);
00126 
00127 
00128 #if defined (_WIN32) || defined( _WIN64)
00129     HANDLE          hSerial;
00130     COMMTIMEOUTS    timeouts;
00131 #endif
00132 #ifdef __linux__
00133     int             fd;
00134 #endif
00135 
00136 };
00137 
00138 
00139 
00143 // Class TimeOut
00144 class TimeOut
00145 {
00146 public:
00147 
00148     // Constructor
00149     TimeOut();
00150 
00151     // Init the timer
00152     void                InitTimer();
00153 
00154     // Return the elapsed time since initialization
00155     unsigned long int   ElapsedTime_ms();
00156 
00157 private:    
00158     struct timeval      PreviousTime;
00159 };
00160 
00161 
00162 
00219 #endif // SERIALIB_H
00220 
 All Classes Functions