:STATus:QUEStionable:LIMit:CONDition?

(Read-Only) Reads the status of limit line failures.

Relevant Modes

ALL - Limit lines are allowed in CAT, EMI, NA, NF, SA

Examples

STAT:QUES:LIM:COND?

The following C# excerpt assumes 4 traces, and uses a “bitwise and” of the return value:

   for (int i = 1; i < 5; ++i)

   {

     if ((returnValueFromScpiCommandAsInt & ((int)(Math.Pow(2, i)))) > 0)

     {

        tracePassFail[i] = "Fail";

     }

     else

     {

        tracePassFail[i] = "Pass";

     }

   }

Return Type

Numeric:

0 - All limit lines pass

2 - Any limit on trace#1 failed

4 - Any limit on trace #2 failed

8 - Any limit on trace #3 failed

16 - Any limit on trace #4 failed

The returned values are added together. For example, 6 would mean traces #1 and #2 failed, 12 would mean #2 and #3 failed, 30 would mean all 4 traces failed and so forth.

Default

Not Applicable


Last Modified:

04no2022

Added EMI mode (12.3x)

01june2018

Added NF mode Opt. 356 (10.3)

17-Jul-2012

Updated for A.06.00)