IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Specifies the maximum number of control channel command retries in response to acknowledge timeout.
Name |
ControlChannelNumRetriesOnTimeout |
Category |
|
Interface |
Integer |
Access |
Read/Write |
Unit |
- |
Visibility |
Expert |
Values |
0 … 3 Increment: 1 |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Code Example
C++
// Determine the current ControlChannelNumRetriesOnTimeout
int64_t value = nodeMapLocalDevice->FindNode<peak::core::nodes::IntegerNode>("ControlChannelNumRetriesOnTimeout")->Value();
// Set ControlChannelNumRetriesOnTimeout to 0
nodeMapLocalDevice->FindNode<peak::core::nodes::IntegerNode>("ControlChannelNumRetriesOnTimeout")->SetValue(0);
C#
// Determine the current ControlChannelNumRetriesOnTimeout
long value = nodeMapLocalDevice.FindNode<peak.core.nodes.IntegerNode>("ControlChannelNumRetriesOnTimeout").Value();
// Set ControlChannelNumRetriesOnTimeout to 0
nodeMapLocalDevice.FindNode<peak.core.nodes.IntegerNode>("ControlChannelNumRetriesOnTimeout").SetValue(0);
Python
# Determine the current ControlChannelNumRetriesOnTimeout (int)
value = nodeMapLocalDevice.FindNode("ControlChannelNumRetriesOnTimeout").Value()
# Set ControlChannelNumRetriesOnTimeout to 0 (int)
nodeMapLocalDevice.FindNode("ControlChannelNumRetriesOnTimeout").SetValue(0)