IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
The maximum packet size proposal. Updated at the time of opening the DataStream module.
This value is determined by requesting test packets of certain sizes from the RemoteDevice. The size of the largest packet that could successfully travel the network is then taken as proposal and is written to the RemoteDevice's SCPS register. If the consumer application wants to use a different packet size it has to overwrite SCPD with the desired size after the stream has been opened.
Name |
MaxPacketSizeProposal |
Category |
|
Interface |
Integer |
Access |
Read |
Unit |
- |
Visibility |
Expert |
Values |
0 … 4294967295 Increment: 1 |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Code Example
C++
// Determine the current MaxPacketSizeProposal
int64_t value = nodeMapDataStream->FindNode<peak::core::nodes::IntegerNode>("MaxPacketSizeProposal")->Value();
C#
// Determine the current MaxPacketSizeProposal
long value = nodeMapDataStream.FindNode<peak.core.nodes.IntegerNode>("MaxPacketSizeProposal").Value();
Python
# Determine the current MaxPacketSizeProposal (int)
value = nodeMapDataStream.FindNode("MaxPacketSizeProposal").Value()