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 sequencer.
- 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
) – SHFQA device identifier, e.g. dev12004 or ‘shf-dev12004’.channel_index (
int
) – Index specifying to which sequencer the program below is uploaded - 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.timeout (
float
) – Maximum time to wait for the compilation on the device in seconds.
- Return type
None