Cenable

SCPI Command :

SEARch:TRIGger:FLXRay:CENable
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(search: str) ConditionOperator[source]
# SEARch:TRIGger:FLXRay:CENable
value: enums.ConditionOperator = driver.search.trigger.flxRay.cenable.get(search = 'abc')

Sets the operator to define a cycle count or a cycle count range.

Returns:

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

  • OFF = ANY: The cycle count is not relevant for the search condition.

  • 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 cycle count number to be set with SEARch:TRIGger:FLXRay:CMIN.

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

set(search: str, cycle_count: ConditionOperator) None[source]
# SEARch:TRIGger:FLXRay:CENable
driver.search.trigger.flxRay.cenable.set(search = 'abc', cycle_count = enums.ConditionOperator.EQUal)

Sets the operator to define a cycle count or a cycle count range.

Parameters:

cycle_count

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

  • OFF = ANY: The cycle count is not relevant for the search condition.

  • 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 cycle count number to be set with SEARch:TRIGger:FLXRay:CMIN.

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