Rcondition

SCPI Command :

SEARch:TRIGger:MILStd:CMD:RCONdition
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(search: str) ConditionOperator[source]
# SEARch:TRIGger:MILStd:CMD:RCONdition
value: enums.ConditionOperator = driver.search.trigger.milstd.cmd.rcondition.get(search = 'abc')

Set the operator to define a remote terminal address: Sets the end value of a pattern range for the corresponding search:

  • DATA: for data words

  • CMD: for command words

  • CDST: for status words

Parameters:

search – String parameter

Returns:

rta_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 pattern to be set with SEARch:TRIGger:MILStd:CDST:RMIN.

  • INRange | OORange: In range/Out of range: set the minimum and maximum value of the range with SEARch:TRIGger:MILStd:CDST:RMIN and SEARch:TRIGger:MILStd:CDST:RMAX.

set(search: str, rta_operator: ConditionOperator) None[source]
# SEARch:TRIGger:MILStd:CMD:RCONdition
driver.search.trigger.milstd.cmd.rcondition.set(search = 'abc', rta_operator = enums.ConditionOperator.EQUal)

Set the operator to define a remote terminal address: Sets the end value of a pattern range for the corresponding search:

  • DATA: for data words

  • CMD: for command words

  • CDST: for status words

Parameters:
  • search – String parameter

  • rta_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 pattern to be set with SEARch:TRIGger:MILStd:CDST:RMIN.

    • INRange | OORange: In range/Out of range: set the minimum and maximum value of the range with SEARch:TRIGger:MILStd:CDST:RMIN and SEARch:TRIGger:MILStd:CDST:RMAX.