Enable

SCPI Command :

SEARch:TRIGger:DDR:FRAMe<*>:FLD<*>:ENABle
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(search: str, busFrameNull=BusFrameNull.Default, busFieldNull=BusFieldNull.Default) bool[source]
# SEARch:TRIGger:DDR:FRAMe<*>:FLD<*>:ENABle
value: bool = driver.search.trigger.ddr.frame.fld.enable.get(search = 'abc', busFrameNull = repcap.BusFrameNull.Default, busFieldNull = repcap.BusFieldNull.Default)

Enables or disables the specific field within the defined frame to be filtered.

Parameters:
  • busFrameNull – optional repeated capability selector. Default value: Nr0 (settable in the interface ‘Frame’)

  • busFieldNull – optional repeated capability selector. Default value: Nr0 (settable in the interface ‘Fld’)

Returns:

cond_enabler: OFF | ON

set(search: str, cond_enabler: bool, busFrameNull=BusFrameNull.Default, busFieldNull=BusFieldNull.Default) None[source]
# SEARch:TRIGger:DDR:FRAMe<*>:FLD<*>:ENABle
driver.search.trigger.ddr.frame.fld.enable.set(search = 'abc', cond_enabler = False, busFrameNull = repcap.BusFrameNull.Default, busFieldNull = repcap.BusFieldNull.Default)

Enables or disables the specific field within the defined frame to be filtered.

Parameters:
  • cond_enabler – OFF | ON

  • busFrameNull – optional repeated capability selector. Default value: Nr0 (settable in the interface ‘Frame’)

  • busFieldNull – optional repeated capability selector. Default value: Nr0 (settable in the interface ‘Fld’)