Tcondition

SCPI Command :

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

Defines the operator to search for a specific frame length or type.

Parameters:

search – String parameter

Returns:

type_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 pattern to be set with SEARch:TRIGger:ETHernet:FRAMe:TMIN.

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

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

Defines the operator to search for a specific frame length or type.

Parameters:
  • search – String parameter

  • type_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 pattern to be set with SEARch:TRIGger:ETHernet:FRAMe:TMIN.

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