IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Returns the number of packets addressed to the IP address of the camera that were dropped. This can be due to overflowing FIFO buffer, or due to too large packet size. This can occur if too many packets are sent on the network and the camera cannot answer them fast enough.
Name |
DeviceLinkPacketsDropped |
Category |
|
Interface |
Integer |
Access |
Read |
Unit |
- |
Visibility |
Expert |
Values |
- |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Code example
C++
// Determine the current DeviceLinkPacketsDropped
int64_t value = nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("DeviceLinkPacketsDropped")->Value();
C#
// Determine the current DeviceLinkPacketsDropped
long value = nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("DeviceLinkPacketsDropped").Value();
Python
# Determine the current DeviceLinkPacketsDropped (int)
value = nodeMapRemoteDevice.FindNode("DeviceLinkPacketsDropped").Value()