7½ Digit Graphical Sampling Multimeter Reference Manual Section 8:
DMM7510-901-01 Rev. B / May 2015 8-341
Details
This function waits up to the timeout value for an input trigger. If one or more trigger events are
detected since the last time this command or trigger.tsplinkin[N].clear() was called, this
function returns immediately.
After waiting for a trigger with this function, the event detector is automatically reset and rearmed.
This is true regardless of the number of events detected.
Example
tsplink.line[3].mode = tsplink.MODE_TRIGGER_OPEN_DRAIN
triggered = trigger.tsplinkin[3].wait(10)
print(triggered)
Waits up to 10 s for a trigger on
TSP-Link
®
line 3.
If false is returned, no trigger
was detected during the 10-s
timeout.
If true is returned, a trigger was
Also see
trigger.tsplinkin[N].clear() (on page 8-338)
tsplink.line[N].mode (on page 8-348)
trigger.tsplinkout[N].assert()
This function simulates the occurrence of the trigger and generates the corresponding trigger event.
Type TSP-Link accessible
Affected by Where saved Default value
Usage
trigger.tsplinkout[N].assert()
The trigger line (1 to 3)
Details
Initiates a trigger event and does not wait for completion. The set pulse width determines how long
the trigger is asserted.
Example
tsplink.line[2].mode = tsplink.MODE_TRIGGER_OPEN_DRAIN
trigger.tsplinkout[2].assert()
Asserts trigger on trigger line
2.
Also see
tsplink.line[N].mode (on page 8-348)