/usr/include/IGSTK/igstkSerialCommunicationForWindows.h is in libigstk4-dev 4.4.0-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 | /*=========================================================================
Program: Image Guided Surgery Software Toolkit
Module: $RCSfile: igstkSerialCommunicationForWindows.h,v $
Language: C++
Date: $Date: 2008-02-11 01:41:51 $
Version: $Revision: 1.12 $
Copyright (c) ISC Insight Software Consortium. All rights reserved.
See IGSTKCopyright.txt or http://www.igstk.org/copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef __igstkSerialCommunicationForWindows_h
#define __igstkSerialCommunicationForWindows_h
#include <windows.h>
#include "igstkSerialCommunication.h"
namespace igstk
{
/** \class SerialCommunicationForWindows
*
* \brief This class implements Windows specific methods for 32-bit
* communication over a Serial Port(RS-232 connection).
*
*
* \image html igstkSerialCommunicationForWindows.png
* "SerialCommunicationForWindows State Machine Diagram"
* \image latex igstkSerialCommunicationForWindows.eps
* "SerialCommunicationForWindows State Machine Diagram"
*
*
* \ingroup Communication
* \ingroup SerialCommunication
*/
class SerialCommunicationForWindows : public SerialCommunication
{
public:
/** Macro with standard traits declarations. */
igstkStandardClassTraitsMacro( SerialCommunicationForWindows,
SerialCommunication )
public:
/** Return value type for interface functions */
typedef SerialCommunication::ResultType ResultType;
protected:
/** Windows file handle type */
typedef HANDLE HandleType;
/** Constructor */
SerialCommunicationForWindows();
/** Destructor */
~SerialCommunicationForWindows();
/** Opens serial port for communication; */
virtual ResultType InternalOpenPort( void );
/** Sets up communication on the open port as per the communication
parameters. */
virtual ResultType InternalUpdateParameters( void );
/** Closes serial port */
virtual ResultType InternalClosePort( void );
/** Send a serial break */
virtual ResultType InternalSendBreak( void );
/** Sleep for the number of milliseconds specified */
virtual void InternalSleep( int milliseconds );
/** Purge the input and output buffers */
virtual ResultType InternalPurgeBuffers( void );
/** Write data */
virtual ResultType InternalWrite( const char *message,
unsigned int numberOfBytes );
/** Read data */
virtual ResultType InternalRead( char *data, unsigned int numberOfBytes,
unsigned int &bytesRead );
/** Set the RTS value
* 0 : Clear the RTS (request-to-send) signal
* 1 : Sends the RTS signal */
virtual ResultType InternalSetRTS(unsigned int signal);
/** Set the timeout */
virtual ResultType InternalSetTimeout( unsigned int timeoutPeriod );
/** Print object information. */
virtual void PrintSelf( std::ostream& os, itk::Indent indent ) const;
private:
unsigned int m_OldTimeoutPeriod;
HandleType m_PortHandle; // com port handle
};
} // end namespace igstk
#endif // __igstkSerialCommunicationForWindows_h
|