TypePy

SCPI Command :

TRIGger<*>:I2C:TYPE
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(trigger=Trigger.Default) BusI2cMode[source]
# TRIGger<*>:I2C:TYPE
value: enums.BusI2cMode = driver.trigger.i2C.typePy.get(trigger = repcap.Trigger.Default)

Selects the trigger type for I²C analysis.

Parameters:

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

Returns:

type_py: STARt | REPStart | STOP | NACK | ADDRess | ADOR | ADAT

  • STARt: Start condition

  • REPStart: Repeated start - the start condition occurs without previous stop condition.

  • NACK: Missing acknowledge bit. To localize specific missing acknowledge bits, use TRIGgert:I2C:ADNack, TRIGgert:I2C:DWNack, and TRIGgert:I2C:DRNack.

  • ADDRess: Triggers on one specific address

  • ADOR: Triggers on an OR combination with up to four four address conditions.

  • ADAT: Triggers on a combination of address and data condition.

  • STOP: Stop condition, end of frame

set(type_py: BusI2cMode, trigger=Trigger.Default) None[source]
# TRIGger<*>:I2C:TYPE
driver.trigger.i2C.typePy.set(type_py = enums.BusI2cMode.ADAT, trigger = repcap.Trigger.Default)

Selects the trigger type for I²C analysis.

Parameters:
  • type_py

    STARt | REPStart | STOP | NACK | ADDRess | ADOR | ADAT

    • STARt: Start condition

    • REPStart: Repeated start - the start condition occurs without previous stop condition.

    • NACK: Missing acknowledge bit. To localize specific missing acknowledge bits, use TRIGgert:I2C:ADNack, TRIGgert:I2C:DWNack, and TRIGgert:I2C:DRNack.

    • ADDRess: Triggers on one specific address

    • ADOR: Triggers on an OR combination with up to four four address conditions.

    • ADAT: Triggers on a combination of address and data condition.

    • STOP: Stop condition, end of frame

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