Please enable JavaScript to view this site.

IDS peak 2.15.0 / uEye+ firmware 3.54

Specifies the interval at which the host sends data to the device to prevent that a firewall blocks the communication on the message channel. If GevMessageChannelSenderInterval is set to 0, no data is sent to the device.

Name

GevMessageChannelSenderInterval

Category

DeviceControl

Interface

Integer

Access

Read/Write

Unit

ms

Visibility

Expert

Values

unsigned int 4-byte

Increment: 100

Standard

IDS

Availability uEye+

icon-gev

Availability uEye

-

Code Example

C++

// Determine the current GevMessageChannelSenderInterval
int64_t value = nodeMapLocalDevice->FindNode<peak::core::nodes::IntegerNode>("GevMessageChannelSenderInterval")->Value();
// Set GevMessageChannelSenderInterval to 5000 ms
nodeMapLocalDevice->FindNode<peak::core::nodes::IntegerNode>("GevMessageChannelSenderInterval")->SetValue(5000);

C#

// Determine the current GevMessageChannelSenderInterval
long value = nodeMapLocalDevice.FindNode<peak.core.nodes.IntegerNode>("GevMessageChannelSenderInterval").Value();
// Set GevMessageChannelSenderInterval to 5000 ms
nodeMapLocalDevice.FindNode<peak.core.nodes.IntegerNode>("GevMessageChannelSenderInterval").SetValue(5000);

Python

# Determine the current GevMessageChannelSenderInterval (int)
value = nodeMapLocalDevice.FindNode("GevMessageChannelSenderInterval").Value()
# Set GevMessageChannelSenderInterval to 5000 ms (int)
nodeMapLocalDevice.FindNode("GevMessageChannelSenderInterval").SetValue(5000)