Logic

SCPI Command :

TRIGger<*>:QUALify<*>:CD:LOGic
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(trigger=Trigger.Default, triggerQualify=TriggerQualify.Default) LogicOperator[source]
# TRIGger<*>:QUALify<*>:CD:LOGic
value: enums.LogicOperator = driver.trigger.qualify.cd.logic.get(trigger = repcap.Trigger.Default, triggerQualify = repcap.TriggerQualify.Default)

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:
  • trigger – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Trigger’)

  • triggerQualify – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Qualify’)

set(op_cd: LogicOperator, trigger=Trigger.Default, triggerQualify=TriggerQualify.Default) None[source]
# TRIGger<*>:QUALify<*>:CD:LOGic
driver.trigger.qualify.cd.logic.set(op_cd = enums.LogicOperator.AND, trigger = repcap.Trigger.Default, triggerQualify = repcap.TriggerQualify.Default)

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:
  • op_cd

    AND | NAND | OR | NOR

    • AND: logical AND, conjunctive combination

    • NAND: logical NOT AND

    • OR: logical OR, disjunctive combination

    • NOR: logical NOT OR

  • trigger – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Trigger’)

  • triggerQualify – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Qualify’)