Ccondition

SCPI Command :

SEARch:TRIGger:ETHernet:FRAMe:CCONdition
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(search: str) ConditionOperator[source]
# SEARch:TRIGger:ETHernet:FRAMe:CCONdition
value: enums.ConditionOperator = driver.search.trigger.ethernet.frame.ccondition.get(search = 'abc')

Defines the operator to search for a Cyclic Redundancy Code (CRC, or frame check) error condition within a frame.

Parameters:

search – String parameter

Returns:

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

  • EQUal | NEQual | LTHan | LETHan | GTHan | GETHan: Equal, Not equal, Less than, Less than or equal, Greater Than, Greater than or equal. These conditions require a CRC pattern to be set with SEARch:TRIGger:ETHernet:FRAMe:CMIN.

  • INRange | OORange: In range, Out of range. Set the minimum and maximum value of the range with SEARch:TRIGger:ETHernet:FRAMe:CMIN and SEARch:TRIGger:ETHernet:FRAMe:CMAX.

set(search: str, crc_operator: ConditionOperator) None[source]
# SEARch:TRIGger:ETHernet:FRAMe:CCONdition
driver.search.trigger.ethernet.frame.ccondition.set(search = 'abc', crc_operator = enums.ConditionOperator.EQUal)

Defines the operator to search for a Cyclic Redundancy Code (CRC, or frame check) error condition within a frame.

Parameters:
  • search – String parameter

  • crc_operator

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

    • EQUal | NEQual | LTHan | LETHan | GTHan | GETHan: Equal, Not equal, Less than, Less than or equal, Greater Than, Greater than or equal. These conditions require a CRC pattern to be set with SEARch:TRIGger:ETHernet:FRAMe:CMIN.

    • INRange | OORange: In range, Out of range. Set the minimum and maximum value of the range with SEARch:TRIGger:ETHernet:FRAMe:CMIN and SEARch:TRIGger:ETHernet:FRAMe:CMAX.