Rreq
SCPI Command :
SEARch:TRIGger:MPHY:RREQ
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(search: str) BusBitCondition[source]
# SEARch:TRIGger:MPHY:RREQ value: enums.BusBitCondition = driver.search.trigger.mphy.rreq.get(search = 'abc')
Specifies the RREQ 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 RREQ value (don’t care) .
- set(search: str, req: BusBitCondition) None[source]
# SEARch:TRIGger:MPHY:RREQ driver.search.trigger.mphy.rreq.set(search = 'abc', req = enums.BusBitCondition.DC)
Specifies the RREQ 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 RREQ value (don’t care) .