Please enable JavaScript to view this site.

IDS peak 2.15.0 / uEye+ firmware 3.54

Specifies the maximum number of control channel command retries in response to acknowledge timeout.

Name

ControlChannelNumRetriesOnTimeout

Category

DeviceControl

Interface

Integer

Access

Read/Write

Unit

-

Visibility

Expert

Values

0 … 3

Increment: 1

Standard

IDS

Availability uEye+

icon-gev

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)