get_serial_paramT_get_serial_paramGetSerialParamGetSerialParamget_serial_param (Operator)
Name
get_serial_paramT_get_serial_paramGetSerialParamGetSerialParamget_serial_param
— Get the parameters of a serial device.
Signature
void GetSerialParam(const HTuple& SerialHandle, HTuple* BaudRate, HTuple* DataBits, HTuple* FlowControl, HTuple* Parity, HTuple* StopBits, HTuple* TotalTimeOut, HTuple* InterCharTimeOut)
Hlong HSerial::GetSerialParam(Hlong* DataBits, HString* FlowControl, HString* Parity, Hlong* StopBits, Hlong* TotalTimeOut, Hlong* InterCharTimeOut) const
static void HOperatorSet.GetSerialParam(HTuple serialHandle, out HTuple baudRate, out HTuple dataBits, out HTuple flowControl, out HTuple parity, out HTuple stopBits, out HTuple totalTimeOut, out HTuple interCharTimeOut)
int HSerial.GetSerialParam(out int dataBits, out string flowControl, out string parity, out int stopBits, out int totalTimeOut, out int interCharTimeOut)
def get_serial_param(serial_handle: HHandle) -> Tuple[int, int, str, str, int, int, int]
Description
get_serial_paramget_serial_paramGetSerialParamGetSerialParamGetSerialParamget_serial_param
returns the current parameter settings of
the serial device passed in SerialHandleSerialHandleSerialHandleSerialHandleserialHandleserial_handle
. For a
description of the parameters of a serial device, see
set_serial_paramset_serial_paramSetSerialParamSetSerialParamSetSerialParamset_serial_param
.
Execution Information
- Multithreading type: reentrant (runs in parallel with non-exclusive operators).
- Multithreading scope: global (may be called from any thread).
- Processed without parallelization.
This operator modifies the state of the following input parameter:
During execution of this operator, access to the value of this parameter must be synchronized if it is used across multiple threads.
Parameters
SerialHandleSerialHandleSerialHandleSerialHandleserialHandleserial_handle
(input_control, state is modified) serial →
HSerial, HTupleHHandleHTupleHtuple (handle) (IntPtr) (HHandle) (handle)
Serial interface handle.
BaudRateBaudRateBaudRateBaudRatebaudRatebaud_rate
(output_control) integer →
HTupleintHTupleHtuple (integer) (int / long) (Hlong) (Hlong)
Speed of the serial interface.
DataBitsDataBitsDataBitsDataBitsdataBitsdata_bits
(output_control) integer →
HTupleintHTupleHtuple (integer) (int / long) (Hlong) (Hlong)
Number of data bits of the serial interface.
FlowControlFlowControlFlowControlFlowControlflowControlflow_control
(output_control) string →
HTuplestrHTupleHtuple (string) (string) (HString) (char*)
Type of flow control of the serial interface.
ParityParityParityParityparityparity
(output_control) string →
HTuplestrHTupleHtuple (string) (string) (HString) (char*)
Parity of the serial interface.
StopBitsStopBitsStopBitsStopBitsstopBitsstop_bits
(output_control) integer →
HTupleintHTupleHtuple (integer) (int / long) (Hlong) (Hlong)
Number of stop bits of the serial interface.
TotalTimeOutTotalTimeOutTotalTimeOutTotalTimeOuttotalTimeOuttotal_time_out
(output_control) integer →
HTupleintHTupleHtuple (integer) (int / long) (Hlong) (Hlong)
Total timeout of the serial interface in ms.
InterCharTimeOutInterCharTimeOutInterCharTimeOutInterCharTimeOutinterCharTimeOutinter_char_time_out
(output_control) integer →
HTupleintHTupleHtuple (integer) (int / long) (Hlong) (Hlong)
Inter-character timeout of the serial interface
in ms.
Result
If the parameters are correct and the parameters of the device could
be read, the operator get_serial_paramget_serial_paramGetSerialParamGetSerialParamGetSerialParamget_serial_param
returns the value
TRUE. Otherwise an exception is raised.
Possible Predecessors
open_serialopen_serialOpenSerialOpenSerialOpenSerialopen_serial
Possible Successors
read_serialread_serialReadSerialReadSerialReadSerialread_serial
,
write_serialwrite_serialWriteSerialWriteSerialWriteSerialwrite_serial
See also
set_serial_paramset_serial_paramSetSerialParamSetSerialParamSetSerialParamset_serial_param
Module
Foundation