load_sequencer_program#

load_sequencer_program(daq, device_id, channel_index, sequencer_program, *, awg_module=None, timeout=10)[source]#

Compiles and loads a program to a specified AWG core.

Parameters
  • daq (ziDAQServer) – Instance of a Zurich Instruments API session connected to a Data Server. The device with identifier device_id is assumed to already be connected to this instance.

  • device_id (str) – SHFSG device identifier, e.g. dev12004 or ‘shf-dev12004’.

  • channel_index (int) – Index specifying which sequencer to upload - there is one sequencer per channel.

  • sequencer_program (str) – Sequencer program to be uploaded.

  • awg_module (Optional[AwgModule]) – AWG module instance used to interact with the sequencer. If none is provided, a new local instance will be created. (default = None)

  • timeout (float) – maximum time to wait for the compilation in seconds. (default = 10)

Return type

None