Creq
SCPI Command :
SEARch:TRIGger:MPHY:CREQ
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(search: str) BusBitCondition[source]
# SEARch:TRIGger:MPHY:CREQ value: enums.BusBitCondition = driver.search.trigger.mphy.creq.get(search = 'abc')
Specifies the CREQ bit pattern.
- Returns:
req: ONE | ZERO | DC
ONE: Sets the trigger condition to binary 1.
ZERO: Sets the trigger condition to binary 0.
DC: Sets the trigger condition to any CREQ value (don’t care) .
- set(search: str, req: BusBitCondition) None[source]
# SEARch:TRIGger:MPHY:CREQ driver.search.trigger.mphy.creq.set(search = 'abc', req = enums.BusBitCondition.DC)
Specifies the CREQ bit pattern.
- Parameters:
req –
ONE | ZERO | DC
ONE: Sets the trigger condition to binary 1.
ZERO: Sets the trigger condition to binary 0.
DC: Sets the trigger condition to any CREQ value (don’t care) .