Pcondition

SCPI Command :

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

Sets the operator for the payload length search setting. You can defined an exact value, or a range.

Parameters:

search

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

  • OFF = ANY: The payload length 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 payload length to be set with SEARch:TRIGger:FLXRay:PMIN.

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

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

Sets the operator for the payload length search setting. You can defined an exact value, or a range.