Condition

SCPI Command :

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

Sets the condition for the frame check. You can define an exact value or a value range.

Returns:

crc_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 SEARch:TRIGger:TBTO:CRC:MIN command.

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

set(search: str, crc_operator: ConditionOperator) None[source]
# SEARch:TRIGger:TBTO:CRC:CONDition
driver.search.trigger.tbto.crc.condition.set(search = 'abc', crc_operator = enums.ConditionOperator.EQUal)

Sets the condition for the frame check. You can define an exact value or a value range.

Parameters:

crc_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 SEARch:TRIGger:TBTO:CRC:MIN command.

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