IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
The UART functionality is only available for cameras that support UART communication on the hardware. This feature is only supported by the following uEye+ cameras.
•USB 3 uEye+ XCP Rev. 1.2
•USB 3 uEye+ XLE Rev. 1.2
•USB 3 uEye+ XLS Rev. 1.2
The hardware must be Rev. 1.2 (or higher), as UART support is included from this hardware on. The description of the GPIO (General Purpose I/O) can be found in the camera manual of the respective camera family.
Cancels Rx reception. Received data is discarded and not copied to the UartRxBuffer. Use the command UartRxStop for relevant data.
Name |
UartRxAbort |
Category |
|
Interface |
Command |
Access |
(Read)/Write |
Unit |
- |
Visibility |
Expert |
Values |
- |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Code example
C++
// Execute UartRxAbort
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("UartRxAbort")->Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("UartRxAbort")->WaitUntilDone();
C#
// Execute UartRxAbort
nodeMapRemoteDevice.FindNode<peak.core.nodes.CommandNode>("UartRxAbort").Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode<peak.core.nodes.CommandNode>("UartRxAbort").WaitUntilDone();
Python
# Execute UartRxAbort
nodeMapRemoteDevice.FindNode("UartRxAbort").Execute()
# Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode("UartRxAbort").WaitUntilDone()