Please enable JavaScript to view this site.

IDS peak 26.06. / uEye+ firmware 3.94

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

DeviceControl

Interface

Command

Access

(Read)/Write

Unit

-

Visibility

Expert

Values

-

Standard

IDS

Availability uEye+

icon-gev icon-u3v

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()