Tests the camera's pending acknowledge feature. When this feature is written, the device waits a time period corresponding to the value of TestPendingAck before acknowledging the write.
On GigE Vision cameras, this feature is only available when GevGVCPPendingAck is enabled. |
Name |
TestPendingAck |
Category |
|
Interface |
Integer |
Access |
Read/Write |
Unit |
ms |
Visibility |
Guru |
Values |
0 ... 10000 |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
- |
Code example
C++
// TestPendingAck by requesting a 1 s delay before answering
nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("TestPendingAck")->SetValue(1000);
C#
// Determine the current TestPendingAck
long value = nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("TestPendingAck").Value();
// TestPendingAck by requesting a 1 s delay before answering
nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("TestPendingAck").SetValue(1000);
Python
# Determine the current TestPendingAck (int)
value = nodeMapRemoteDevice.FindNode("TestPendingAck").Value()
# TestPendingAck by requesting a 1 s delay before answering
nodeMapRemoteDevice.FindNode("TestPendingAck").SetValue(1000)