:MEASure:EYE:TDEQ:STATus:DETails?

Meas. mode:
Eye
Package License:
L-RND
L-MFG
Waveform type:
PAM4
Flex Apps:
FlexDCA
FlexRT

Query Syntax

:MEASure:EYE:TDEQ:STATus:DETails?

Description

Returns a string with information about :EYE:TDEQ measurement. If the measurement fails, a supplemental description may be returned. If the measurement correctly completes without errors, a string of additional measurement information is returned as explained in :EYE:TDEQ. The first field of the string can be returned using the :STATus:REASon? query. This behavour of returning information for a successful measurement is unique to this measurement.

Use the :EYE:TDEQ:STATus? parent query to determine if the measurement has passed or failed.

Requires FlexDCA revision A.05.60 and above.

Measurement Identification

Avoid subtle programming errors! To ensure that the correct measurement is installed or queried, always explicitly identify a measurement when installing a measurement or querying a measured value, status, or detail. To identify a measurement, specify the measurement's source waveform (:SOURce child command). With some measurements, you may also need to specify other identifying values. Generally, when selecting a measurement using FlexDCA's GUI, if a dialog appears prompting you to select values, you should explicitly specify these values when remotely identifying the measurement. More information.

For example, to return the status of the measurement, :MEASure:EYE:TDEQ:

flex.write(':MEASure:EYE:TDEQ:SOURce CHAN1A')
if flex.query(':MEASure:EYE:TDEQ:STATus?') == 'CORR';
    measurement = flex.query(':MEASure:EYE:TDEQ?')
else:
	details = flex.query(':MEASure:EYE:TDEQ:STATus:DETails?')
	reason = flex.query(':MEASure:EYE:TDEQ:STATus:REASon?')