enable_sequencer#

AWG.enable_sequencer(*, single: bool) None[source]#

Starts the sequencer of a specific channel.

Warning

This function is synchronous and blocks until the sequencer is enabled. When working with multiple instruments this function is the wrong approach and the sequencer should be enabled asynchronously. (For more information please take a look at the awg example in the toolkit documentation.)

Parameters:
  • single (bool) – Flag if the sequencer should be disabled after finishing

  • execution.

Raises:

RuntimeError – If the sequencer could not be enabled.

Return type:

None

Changed in version 0.5.0: Check the acknowledged value instead of using wait_for_state_change.