Defines the interval at which the system and device timestamps are synchronized when SynchronizationTimestampMode = "Auto".
This setting has no effect when SynchronizationTimestampMode = "Manual".
Name |
SynchronizationTimestampInterval |
Category |
|
Interface |
Integer |
Access |
Read/Write |
Unit |
ms |
Visibility |
Expert |
Values |
Minimum: 1000 Increment: 1 Default: 6000 |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Code example
C++
// Determine the current SynchronizationTimestampInterval
int64_t value = nodeMapLocalDevice->FindNode<peak::core::nodes::IntegerNode>("SynchronizationTimestampInterval")->Value();
// Set SynchronizationTimestampInterval to 6000
nodeMapLocalDevice->FindNode<peak::core::nodes::IntegerNode>("SynchronizationTimestampInterval")->SetValue(6000);
C#
// Determine the current SynchronizationTimestampInterval
long value = nodeMapLocalDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.IntegerNode>("SynchronizationTimestampInterval").Value();
// Set SynchronizationTimestampInterval to 6000
nodeMapLocalDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.IntegerNode>("SynchronizationTimestampInterval").SetValue(6000);
Python
# Determine the current SynchronizationTimestampInterval (int)
value = nodeMapLocalDevice.FindNode("SynchronizationTimestampInterval").Value()
# Set SynchronizationTimestampInterval to 6000 (int)
nodeMapLocalDevice.FindNode("SynchronizationTimestampInterval").SetValue(6000)