Logic

SCPI Command :

SEARch:TRIGger:PATTern:AB:LOGic
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(search_name: str) LogicOperator[source]
# SEARch:TRIGger:PATTern:AB:LOGic
value: enums.LogicOperator = driver.search.trigger.pattern.ab.logic.get(search_name = 'abc')

Defines the logical combination of the indicated channels after evaluating the previous logical operations:

  • AB: CH1 and CH2

  • CD: CH3 and CH4

  • ABCD: result of AB and CD

Parameters:

search_name – String with the name of the search

Returns:

operator: AND: logical AND, conjunctive combination NAND:logical NOT AND OR:logical OR, disjunctive combination NOR: logical NOT OR

set(search_name: str, operator: LogicOperator) None[source]
# SEARch:TRIGger:PATTern:AB:LOGic
driver.search.trigger.pattern.ab.logic.set(search_name = 'abc', operator = enums.LogicOperator.AND)

Defines the logical combination of the indicated channels after evaluating the previous logical operations:

  • AB: CH1 and CH2

  • CD: CH3 and CH4

  • ABCD: result of AB and CD

Parameters:
  • search_name – String with the name of the search

  • operator – AND: logical AND, conjunctive combination NAND:logical NOT AND OR:logical OR, disjunctive combination NOR: logical NOT OR