load_sequencer_program#
- load_sequencer_program(daq: ziDAQServer, device_id: str, channel_index: int, sequencer_program: str, *, awg_module: Optional[AwgModule] = None, timeout: float = 10) None [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]) – The standalone AWG compiler is used instead. .. deprecated:: 22.08
timeout (float) – Maximum time to wait for the compilation on the device in seconds.
- Return type:
None