Condition

SCPI Command :

SEARch:TRIGger:DPHY:ESDTa:CONDition
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(search: str) ConditionOperator[source]
# SEARch:TRIGger:DPHY:ESDTa:CONDition
value: enums.ConditionOperator = driver.search.trigger.dphy.esdta.condition.get(search = 'abc')

Set the condition for the escape mode data value. You can define an exact value or a value range.

Parameters:

search

OFF | ANY | 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 SEARch:TRIGger:DPHY:ESDTa:MIN command.

  • INRange | OORange: In range/Out of range: set the minimum and maximum value of the range with SEARch:TRIGger:DPHY:ESDTa:MIN and SEARch:TRIGger:DPHY:ESDTa:MAX.

  • OFF | ANY: Any pattern is detected.

set(search: str, lp_escp_mode_data_optor: ConditionOperator) None[source]
# SEARch:TRIGger:DPHY:ESDTa:CONDition
driver.search.trigger.dphy.esdta.condition.set(search = 'abc', lp_escp_mode_data_optor = enums.ConditionOperator.EQUal)

Set the condition for the escape mode data value. You can define an exact value or a value range.