#include <xSens_MT3/cmt1.h>
Public Member Functions | |
Cmt1s () | |
Default constructor, initializes all members to their default values. More... | |
~Cmt1s () | |
Destructor, de-initializes, frees memory allocated for buffers, etc. More... | |
XsensResultValue | close (void) |
Close the serial communication port. More... | |
XsensResultValue | escape (const CmtControlLine mask, const CmtControlLine state) |
Manipulate the Serial control lines. More... | |
XsensResultValue | flushData (void) |
Flush all data to be transmitted / received. More... | |
uint32_t | getBaudrate (void) const |
Return the baudrate that is currently being used by the port. More... | |
HANDLE | getHandle (void) const |
Return the handle of the port. More... | |
uint8_t | getPortNr (void) const |
Retrieve the port number that was last successfully opened. More... | |
void | getPortName (char *portname) const |
Retrieve the port name that was last successfully opened. More... | |
XsensResultValue | getLastResult (void) const |
Return the error code of the last operation. More... | |
uint32_t | getTimeout (void) const |
Return the current timeout value. More... | |
bool | isOpen (void) const |
Return whether the communication port is open or not. More... | |
XsensResultValue | open (const char *portName, const uint32_t baudRate=CMT_DEFAULT_BAUD_RATE, uint32_t readBufSize=CMT_DEFAULT_READ_BUFFER_SIZE, uint32_t writeBufSize=CMT_DEFAULT_WRITE_BUFFER_SIZE) |
Open a communcation channel to the given serial port name. More... | |
XsensResultValue | open (const uint32_t portNumber, const uint32_t baudRate=CMT_DEFAULT_BAUD_RATE, uint32_t readBufSize=CMT_DEFAULT_READ_BUFFER_SIZE, uint32_t writeBufSize=CMT_DEFAULT_WRITE_BUFFER_SIZE) |
Open a communication channel to the given COM port number. More... | |
XsensResultValue | readData (const uint32_t maxLength, uint8_t *data, uint32_t *length=NULL) |
Read data from the serial port and put it into the data buffer. More... | |
XsensResultValue | setCallbackFunction (CmtCallbackSelector tp, int32_t instance, CmtCallbackFunction func, void *param) |
Set the callback function for when bytes have been received. More... | |
XsensResultValue | setTimeout (const uint32_t ms=CMT1_DEFAULT_TIMEOUT) |
Set the default timeout value to use in blocking operations. More... | |
XsensResultValue | waitForData (const uint32_t maxLength, uint8_t *data, uint32_t *length=NULL) |
Wait for data to arrive or a timeout to occur. More... | |
XsensResultValue | writeData (const uint32_t length, const uint8_t *data, uint32_t *written) |
Write the data to the serial port. More... | |
Protected Attributes | |
uint32_t | m_baudrate |
The baudrate that was last set to be used by the port. More... | |
uint32_t | m_endTime |
The time at which an operation will end in ms, used by several functions. More... | |
bool | m_isOpen |
Indicates if the port is open or not. More... | |
XsensResultValue | m_lastResult |
The last result of an operation. More... | |
uint8_t | m_port |
The opened COM port nr. More... | |
char | m_portname [257] |
uint32_t | m_timeout |
DCB | m_commState |
Stored settings about the serial port. More... | |
HANDLE | m_handle |
The serial port handle. More... | |
Private Member Functions | |
Cmt1s (const Cmt1s &ref) | |
This object cannot be copied, so this function is not implemented. More... | |
Private Attributes | |
CmtCallbackFunction | m_onBytesReceived |
The bytes received function. More... | |
int32_t | m_onBytesReceivedInstance |
Custom, user supplied parameter for the OnBytesReceived callback function, passed as the first argument. More... | |
void * | m_onBytesReceivedParam |
Custom, user supplied parameter for the OnBytesReceived callback function, passed as the last argument. More... | |
|
private |
This object cannot be copied, so this function is not implemented.
xsens::Cmt1s::Cmt1s | ( | ) |
Default constructor, initializes all members to their default values.
Definition at line 184 of file cmt1.cpp.
References CMT1_DEFAULT_TIMEOUT, m_baudrate, m_endTime, m_isOpen, m_lastResult, m_port, m_timeout, and XRV_OK.
xsens::Cmt1s::~Cmt1s | ( | ) |
XsensResultValue xsens::Cmt1s::close | ( | void | ) |
Close the serial communication port.
Definition at line 209 of file cmt1.cpp.
References mrpt::system::os::fclose(), m_endTime, m_handle, m_isOpen, m_lastResult, XRV_NOPORTOPEN, and XRV_OK.
Referenced by xsens::Cmt2s::close(), and ~Cmt1s().
XsensResultValue xsens::Cmt1s::escape | ( | const CmtControlLine | mask, |
const CmtControlLine | state | ||
) |
Manipulate the Serial control lines.
The function manipulates the serial control lines that are indicated by the mask parameter. Note that only the DTR and RTS lines can be set by win32.
mask | Indicates which lines are to be manipulated and which should be left alone. |
state | Contains the new state of the control lines. |
Definition at line 249 of file cmt1.cpp.
References CMT_CONTROL_DTR, CMT_CONTROL_RTS, m_handle, m_isOpen, m_lastResult, status, XRV_ERROR, XRV_NOPORTOPEN, and XRV_OK.
XsensResultValue xsens::Cmt1s::flushData | ( | void | ) |
Flush all data to be transmitted / received.
This function tries to send and receive any remaining data immediately and does not return until the buffers are empty.
Definition at line 308 of file cmt1.cpp.
References m_endTime, m_handle, m_lastResult, and XRV_OK.
Referenced by xsens::Cmt3::gotoConfig().
Return the baudrate that is currently being used by the port.
Definition at line 121 of file cmt1.h.
References m_baudrate.
Referenced by xsens::Cmt2s::getBaudrate().
|
inline |
|
inline |
Return the error code of the last operation.
Definition at line 129 of file cmt1.h.
References m_lastResult.
|
inline |
Retrieve the port name that was last successfully opened.
Definition at line 127 of file cmt1.h.
References m_portname, and mrpt::system::os::sprintf().
Referenced by xsens::Cmt2s::getPortName().
Retrieve the port number that was last successfully opened.
Definition at line 125 of file cmt1.h.
References m_port.
Referenced by xsens::Cmt2s::close(), xsens::Cmt2s::getPortNr(), xsens::Cmt3::gotoConfig(), xsens::Cmt3::gotoMeasurement(), xsens::Cmt3::initBus(), xsens::Cmt2s::readMessage(), xsens::Cmt2s::waitForMessage(), and xsens::Cmt2s::writeMessage().
|
inline |
Return whether the communication port is open or not.
Definition at line 133 of file cmt1.h.
References m_isOpen.
Referenced by xsens::Cmt2s::isOpen().
XsensResultValue xsens::Cmt1s::open | ( | const char * | portName, |
const uint32_t | baudRate = CMT_DEFAULT_BAUD_RATE , |
||
uint32_t | readBufSize = CMT_DEFAULT_READ_BUFFER_SIZE , |
||
uint32_t | writeBufSize = CMT_DEFAULT_WRITE_BUFFER_SIZE |
||
) |
Open a communcation channel to the given serial port name.
The port is automatically initialized to the given baudrate. If the baudrate is set to 0, the baud rate is automatically detected. If possible.
Definition at line 322 of file cmt1.cpp.
References CMT1LOG, FALSE, m_baudrate, m_commState, m_endTime, m_handle, m_isOpen, m_lastResult, m_port, m_portname, m_timeout, MRPT_UNUSED_PARAM, setTimeout(), mrpt::system::os::sprintf(), XRV_ALREADYOPEN, XRV_ERROR, XRV_INPUTCANNOTBEOPENED, and XRV_OK.
Referenced by xsens::Cmt2s::open(), and open().
XsensResultValue xsens::Cmt1s::open | ( | const uint32_t | portNumber, |
const uint32_t | baudRate = CMT_DEFAULT_BAUD_RATE , |
||
uint32_t | readBufSize = CMT_DEFAULT_READ_BUFFER_SIZE , |
||
uint32_t | writeBufSize = CMT_DEFAULT_WRITE_BUFFER_SIZE |
||
) |
Open a communication channel to the given COM port number.
The port is automatically initialized to the given baud rate. If the baudrate is set to 0, the baud rate is automatically detected. If possible.
Definition at line 462 of file cmt1.cpp.
References open(), and mrpt::system::os::sprintf().
XsensResultValue xsens::Cmt1s::readData | ( | const uint32_t | maxLength, |
uint8_t * | data, | ||
uint32_t * | length = NULL |
||
) |
Read data from the serial port and put it into the data buffer.
This function reads as much data as possible from the com port (non-blocking) and put as much data as will fit into the data buffer. Any excess data is stored in the m_readBuffer
member variable. If there was enough data in m_readBuffer to fulfill the request, the data parameter is first filled and the port is polled afterwards.
maxLength | The maximum amount of data read. |
data | Pointer to a buffer that will store the received data. |
length | The number of bytes placed into data . |
Definition at line 478 of file cmt1.cpp.
References CMT1LOG, CMT_CALLBACK_ONBYTESRECEIVED, CMT_MAX_FILENAME_LENGTH, CMTLOG, mrpt::system::os::fopen(), m_baudrate, CmtBinaryData::m_data, m_handle, m_isOpen, m_lastResult, m_onBytesReceived, m_onBytesReceivedInstance, m_onBytesReceivedParam, m_port, CmtBinaryData::m_portNr, CmtBinaryData::m_size, mrpt::system::os::memcpy(), mrpt::system::os::sprintf(), XRV_ERROR, XRV_NOPORTOPEN, and XRV_OK.
Referenced by xsens::Cmt2s::readMessage(), waitForData(), and xsens::Cmt2s::waitForMessage().
XsensResultValue xsens::Cmt1s::setCallbackFunction | ( | CmtCallbackSelector | tp, |
int32_t | instance, | ||
CmtCallbackFunction | func, | ||
void * | param | ||
) |
Set the callback function for when bytes have been received.
Definition at line 531 of file cmt1.cpp.
References CMT_CALLBACK_ONBYTESRECEIVED, m_lastResult, m_onBytesReceived, m_onBytesReceivedInstance, m_onBytesReceivedParam, XRV_INVALIDPARAM, and XRV_OK.
XsensResultValue xsens::Cmt1s::setTimeout | ( | const uint32_t | ms = CMT1_DEFAULT_TIMEOUT | ) |
Set the default timeout value to use in blocking operations.
This function sets the value of m_timeout. There is no infinity value. The value 0 means that all blocking operations now become polling (non-blocking) operations. If the value is set to or from 0, the low-level serial port settings may be changed in addition to the m_timeout value.
Definition at line 545 of file cmt1.cpp.
References CMT1LOG, m_commState, m_handle, m_isOpen, m_lastResult, m_timeout, and XRV_OK.
Referenced by open(), and xsens::Cmt2s::setTimeout().
XsensResultValue xsens::Cmt1s::waitForData | ( | const uint32_t | maxLength, |
uint8_t * | data, | ||
uint32_t * | length = NULL |
||
) |
Wait for data to arrive or a timeout to occur.
The function waits until maxLength
data is available or until a timeout occurs. The function returns success if data is available or XsensResultValue::TIMEOUT if a timeout occurred. A timeout value of 0 indicates that the default timeout stored in the class should be used.
Definition at line 590 of file cmt1.cpp.
References CMT1LOG, xsens::getTimeOfDay(), m_lastResult, m_timeout, readData(), XRV_OK, and XRV_TIMEOUT.
XsensResultValue xsens::Cmt1s::writeData | ( | const uint32_t | length, |
const uint8_t * | data, | ||
uint32_t * | written | ||
) |
Write the data to the serial port.
The function writes the given data to the connected COM port. The default timeout is respected in this operation.
Definition at line 618 of file cmt1.cpp.
References CMT_MAX_FILENAME_LENGTH, mrpt::system::os::fopen(), m_baudrate, m_handle, m_isOpen, m_lastResult, m_port, mrpt::system::os::sprintf(), XRV_ERROR, XRV_NOPORTOPEN, and XRV_OK.
Referenced by xsens::Cmt2s::writeMessage().
|
protected |
The baudrate that was last set to be used by the port.
Definition at line 75 of file cmt1.h.
Referenced by Cmt1s(), getBaudrate(), open(), readData(), and writeData().
|
protected |
Stored settings about the serial port.
Definition at line 91 of file cmt1.h.
Referenced by open(), and setTimeout().
|
protected |
|
protected |
The serial port handle.
Definition at line 92 of file cmt1.h.
Referenced by close(), escape(), flushData(), getHandle(), open(), readData(), setTimeout(), and writeData().
|
protected |
Indicates if the port is open or not.
Definition at line 79 of file cmt1.h.
Referenced by close(), Cmt1s(), escape(), isOpen(), open(), readData(), setTimeout(), and writeData().
|
mutableprotected |
The last result of an operation.
Definition at line 81 of file cmt1.h.
Referenced by close(), Cmt1s(), escape(), flushData(), getLastResult(), open(), readData(), setCallbackFunction(), setTimeout(), waitForData(), and writeData().
|
private |
The bytes received function.
This function is automatically called every time binary data is read from the connected COM port.
Definition at line 68 of file cmt1.h.
Referenced by readData(), and setCallbackFunction().
|
private |
Custom, user supplied parameter for the OnBytesReceived callback function, passed as the first argument.
Definition at line 70 of file cmt1.h.
Referenced by readData(), and setCallbackFunction().
|
private |
Custom, user supplied parameter for the OnBytesReceived callback function, passed as the last argument.
Definition at line 72 of file cmt1.h.
Referenced by readData(), and setCallbackFunction().
|
protected |
The opened COM port nr.
Definition at line 83 of file cmt1.h.
Referenced by Cmt1s(), getPortNr(), open(), readData(), and writeData().
|
protected |
Definition at line 84 of file cmt1.h.
Referenced by getPortName(), and open().
|
protected |
The default timeout value to use during blocking operations. A value of 0 means that all operations become non-blocking.
Definition at line 88 of file cmt1.h.
Referenced by Cmt1s(), getTimeout(), open(), setTimeout(), and waitForData().
Page generated by Doxygen 1.8.14 for MRPT 1.5.9 Git: 690a4699f Wed Apr 15 19:29:53 2020 +0200 at miƩ abr 15 19:30:12 CEST 2020 |