Enable

SCPI Command :

SEARch:TRIGger:USBThree:ERRor<*>:ENABle
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(search: str, error=Error.Default) bool[source]
# SEARch:TRIGger:USBThree:ERRor<*>:ENABle
value: bool = driver.search.trigger.usbThree.error.enable.get(search = 'abc', error = repcap.Error.Default)

Enables the search for errors. You can search for all error types in parallel.

Parameters:
  • search – String with the name of the search.

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

Returns:

enable: OFF | ON

set(search: str, enable: bool, error=Error.Default) None[source]
# SEARch:TRIGger:USBThree:ERRor<*>:ENABle
driver.search.trigger.usbThree.error.enable.set(search = 'abc', enable = False, error = repcap.Error.Default)

Enables the search for errors. You can search for all error types in parallel.

Parameters:
  • search – String with the name of the search.

  • enable – OFF | ON

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