IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Enables the generation of PENDING_ACK.
Name |
GevGVCPPendingAck |
Category |
|
Interface |
Boolean |
Access |
Read/Write |
Unit |
- |
Visibility |
Guru |
Values |
True False |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
- |
Values description
•True: Enables the generation of PENDING_ACK.
•False: Disables the generation of PENDING_ACK.
Code example
C++
// Determine the current status of GevGVCPPendingAck
bool value = nodeMapRemoteDevice->FindNode<peak::core::nodes::BooleanNode>("GevGVCPPendingAck")->Value();
// Set GevGVCPPendingAck to true
nodeMapRemoteDevice->FindNode<peak::core::nodes::BooleanNode>("GevGVCPPendingAck")->SetValue(true);
C#
// Determine the current status of GevGVCPPendingAck
bool value = nodeMapRemoteDevice.FindNode<peak.core.nodes.BooleanNode>("GevGVCPPendingAck").Value();
// Set GevGVCPPendingAck to true
nodeMapRemoteDevice.FindNode<peak.core.nodes.BooleanNode>("GevGVCPPendingAck").SetValue(true);
Python
# Determine the current status of GevGVCPPendingAck (bool)
value = nodeMapRemoteDevice.FindNode("GevGVCPPendingAck").Value()
# Set GevGVCPPendingAck to true (bool)
nodeMapRemoteDevice.FindNode("GevGVCPPendingAck").SetValue(True)