Tcondition

SCPI Command :

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

Sets the operator to set a specific endpoint type (ET) or an ET range. The ET values are set with method RsRtx.search.trigger.usb.tmin.set() and method RsRtx.search.trigger.usb.tmax.set() .

Returns:

operator_et: OFF | ANY | EQUal | NEQual | LTHan | LETHan | GTHan | GETHan | INRange | OORange

  • OFF = ANY: The endpoint type is not relevant for the search condition.

  • EQUal | NEQual | LTHan | LETHan | GTHan | GETHan: Equal, Not equal, Less than, Less than or equal, Greater than, Greater than or equal. These conditions require one ET value to be set using SEARch:TRIGger:USB:TMIN.

  • INRange | OORange: In range, out of range. These conditions require a range of ET values to be set using SEARch:TRIGger:USB:TMIN and SEARch:TRIGger:USB:TMAX.

set(search: str, operator_et: ConditionOperator) None[source]
# SEARch:TRIGger:USB:TCONdition
driver.search.trigger.usb.tcondition.set(search = 'abc', operator_et = enums.ConditionOperator.EQUal)

Sets the operator to set a specific endpoint type (ET) or an ET range. The ET values are set with method RsRtx.search.trigger.usb.tmin.set() and method RsRtx.search.trigger.usb.tmax.set() .

Parameters:

operator_et

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

  • OFF = ANY: The endpoint type is not relevant for the search condition.

  • EQUal | NEQual | LTHan | LETHan | GTHan | GETHan: Equal, Not equal, Less than, Less than or equal, Greater than, Greater than or equal. These conditions require one ET value to be set using SEARch:TRIGger:USB:TMIN.

  • INRange | OORange: In range, out of range. These conditions require a range of ET values to be set using SEARch:TRIGger:USB:TMIN and SEARch:TRIGger:USB:TMAX.