Latches the timestamps of the last synchronization in SynchronizationTimestampSystem and SynchronizationTimestampDevice.
If SynchronizationTimestampMode = "Manual", this command first performs a synchronization and then latches the resulting timestamps.
Name |
SynchronizationTimestampLatch |
Category |
|
Interface |
Command |
Access |
(Read)/Write |
Unit |
- |
Visibility |
Expert |
Values |
- |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Code example
C++
// Execute SynchronizationTimestampLatch
nodeMapLocalDevice->FindNode<peak::core::nodes::CommandNode>("SynchronizationTimestampLatch")->Execute();
// Check if the command has finished before you continue (optional)
nodeMapLocalDevice->FindNode<peak::core::nodes::CommandNode>("SynchronizationTimestampLatch")->WaitUntilDone();
C#
// Execute SynchronizationTimestampLatch
nodeMapLocalDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.CommandNode>("SynchronizationTimestampLatch").Execute();
// Check if the command has finished before you continue (optional)
nodeMapLocalDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.CommandNode>("SynchronizationTimestampLatch").WaitUntilDone();
Python
# Execute SynchronizationTimestampLatch
nodeMapLocalDevice.FindNode("SynchronizationTimestampLatch").Execute()
# Check if the command has finished before you continue (optional)
nodeMapLocalDevice.FindNode("SynchronizationTimestampLatch").WaitUntilDone()