Condition
SCPI Command :
SEARch:TRIGger:TBTO:SADDress:CONDition
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(search: str) ConditionOperator[source]
# SEARch:TRIGger:TBTO:SADDress:CONDition value: enums.ConditionOperator = driver.search.trigger.tbto.saddress.condition.get(search = 'abc')
Sets the condition for the source address. You can define an exact value or a value range.
- Parameters:
search –
EQUal | NEQual | LTHan | LETHan | GTHan | GETHan | INRange | OORange
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 data pattern to be set with the corresponding SEARch:TRIGger:TBTO:SADDress:MIN command.
INRange | OORange: In range/Out of range: set the minimum and maximum value of the range with SEARch:TRIGger:TBTO:SADDress:MIN andSEARch:TRIGger:TBTO:SADDress:MAX.
- set(search: str, src_addr_optor: ConditionOperator) None[source]
# SEARch:TRIGger:TBTO:SADDress:CONDition driver.search.trigger.tbto.saddress.condition.set(search = 'abc', src_addr_optor = enums.ConditionOperator.EQUal)
Sets the condition for the source address. You can define an exact value or a value range.