Condition

SCPI Command :

TRIGger<*>:TBTO:LENGth:CONDition
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(trigger=Trigger.Default) ConditionOperator[source]
# TRIGger<*>:TBTO:LENGth:CONDition
value: enums.ConditionOperator = driver.trigger.tbto.length.condition.get(trigger = repcap.Trigger.Default)

Sets the condition for the length / type. You can define an exact value or a value range.

Parameters:

trigger – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Trigger’)

Returns:

type_operator: EQUal | NEQual | LTHan | LETHan | GTHan | GETHan | INRange | OORange

  • EQUal | NEQual | LTHan | LETHan | GTHan | GETHan: Equal, Not equal, Less than, Less or equal than, Greater Than, Greater or equal than. These conditions require one data pattern to be set with the corresponding TRIGgert:TBTO:LENGth:MIN command.

  • INRange | OORange: In range/Out of range: set the minimum and maximum value of the range with TRIGgert:TBTO:LENGth:MIN and TRIGgert:TBTO:LENGth:MAX.

set(type_operator: ConditionOperator, trigger=Trigger.Default) None[source]
# TRIGger<*>:TBTO:LENGth:CONDition
driver.trigger.tbto.length.condition.set(type_operator = enums.ConditionOperator.EQUal, trigger = repcap.Trigger.Default)

Sets the condition for the length / type. You can define an exact value or a value range.

Parameters:
  • type_operator

    EQUal | NEQual | LTHan | LETHan | GTHan | GETHan | INRange | OORange

    • EQUal | NEQual | LTHan | LETHan | GTHan | GETHan: Equal, Not equal, Less than, Less or equal than, Greater Than, Greater or equal than. These conditions require one data pattern to be set with the corresponding TRIGgert:TBTO:LENGth:MIN command.

    • INRange | OORange: In range/Out of range: set the minimum and maximum value of the range with TRIGgert:TBTO:LENGth:MIN and TRIGgert:TBTO:LENGth:MAX.

  • trigger – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Trigger’)