Logic
SCPI Command :
SEARch:TRIGger:PATTern:CD:LOGic
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(search_name: str) LogicOperator[source]
# SEARch:TRIGger:PATTern:CD:LOGic value: enums.LogicOperator = driver.search.trigger.pattern.cd.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:CD:LOGic driver.search.trigger.pattern.cd.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