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 #include <stdio.h>
00043 #include "SerialPortClass.h"
00044
00045
00046 SerialPort::~SerialPort()
00047 {
00048 if( m_serialport.isPortOpen )
00049 {
00050 if( !SERIALPORT_Close( &m_serialport ) )
00051 {
00052 SERIALPORT_ERROR_MSG( "SERIALPORT_Close returned FALSE." );
00053 }
00054 }
00055 }
00056
00057
00058 SerialPort::SerialPort()
00059 {
00060 if( !SERIALPORT_Initialize( &m_serialport) )
00061 {
00062 SERIALPORT_ERROR_MSG( "SERIALPORT_Init returned FALSE." );
00063 }
00064 }
00065
00066 bool SerialPort::Close()
00067 {
00068 if( m_serialport.isPortOpen )
00069 {
00070 if( !SERIALPORT_Close( &m_serialport ) )
00071 {
00072 SERIALPORT_ERROR_MSG( "SERIALPORT_Close returned FALSE." );
00073 return false;
00074 }
00075 }
00076 return true;
00077 }
00078
00079 bool SerialPort::Open(
00080 const unsigned short portnumber,
00081 const SERIALPORT_enumBaudRate baudrate,
00082 const SERIALPORT_enumParity parity,
00083 const SERIALPORT_enumDataBits databits,
00084 const SERIALPORT_enumStopBits stopbits,
00085 const SERIALPORT_enumFlowControl flowcontrol,
00086 const SERIALPORT_enumBehaviour behaviour,
00087 const unsigned timeout_in_ms
00088 )
00089 {
00090 m_serialport.port = portnumber;
00091 m_serialport.baudrate = baudrate;
00092 m_serialport.parity = parity;
00093 m_serialport.databits = databits;
00094 m_serialport.stopbits = stopbits;
00095 m_serialport.flowcontrol = flowcontrol;
00096 m_serialport.behaviour = behaviour;
00097 m_serialport.timeout = timeout_in_ms;
00098
00099 if( !SERIALPORT_Open( &m_serialport ) )
00100 {
00101 SERIALPORT_ERROR_MSG( "SERIALPORT_Open returned FALSE." );
00102 return false;
00103 }
00104 return true;
00105 }
00106
00107 bool SerialPort::Read(
00108 unsigned char* buffer,
00109 const unsigned bufferSize,
00110 unsigned& nrBytesRead
00111 )
00112 {
00113 if( !SERIALPORT_Read( &m_serialport, buffer, bufferSize, &nrBytesRead ) )
00114 {
00115 SERIALPORT_ERROR_MSG( "SERIALPORT_Read returned FALSE." );
00116 return false;
00117 }
00118 return true;
00119 }
00120
00121 bool SerialPort::Write(
00122 unsigned char* buffer,
00123 const unsigned nrBytesToWrite
00124 )
00125 {
00126 if( !SERIALPORT_Write( &m_serialport, buffer, nrBytesToWrite ) )
00127 {
00128 SERIALPORT_ERROR_MSG( "SERIALPORT_Write returned FALSE." );
00129 return false;
00130 }
00131 return true;
00132 }
00133
00134 bool SerialPort::WaitOnRingIndicator( unsigned short timeout_ms, bool& ring_detected )
00135 {
00136 BOOL rd = FALSE;
00137 if( !SERIALPORT_WaitOnRingIndicatorEvent( &m_serialport, timeout_ms, &rd ) )
00138 {
00139 SERIALPORT_ERROR_MSG( "SERIALPORT_WaitOnRingIndicatorEvent returned FALSE." );
00140 return false;
00141 }
00142 if( rd )
00143 ring_detected = true;
00144 else
00145 ring_detected = false;
00146
00147 return true;
00148 }
00149