Skip to content

Commit ffcdd28

Browse files
committed
debug: Add some 0.1 default configurations
1 parent 2019af3 commit ffcdd28

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

src/qibolab/_core/instruments/qblox/cluster.py

+1
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ def _configure(
180180
configs: Configs,
181181
acquisition: AcquisitionType,
182182
) -> SequencerMap:
183+
self.cluster.reference_source("internal")
183184
sequencers = defaultdict(dict)
184185
for slot, chs in self._channels_by_module.items():
185186
module = self._modules[slot]

src/qibolab/_core/instruments/qblox/config.py

+10
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,16 @@ def sequencer(
153153
seq.marker_ovr_en(not (sequence.is_empty and address.input))
154154
seq.marker_ovr_value(0 if sequence.is_empty else 15)
155155

156+
seq.set("cont_mode_en_awg_path0", False)
157+
seq.set("cont_mode_en_awg_path1", False)
158+
seq.set("cont_mode_waveform_idx_awg_path0", 0)
159+
seq.set("cont_mode_waveform_idx_awg_path1", 0)
160+
seq.set("mixer_corr_gain_ratio", 1)
161+
seq.set("mixer_corr_phase_offset_degree", 0)
162+
seq.set("nco_phase_offs", 0)
163+
seq.set("upsample_rate_awg_path0", 0)
164+
seq.set("upsample_rate_awg_path1", 0)
165+
156166
# acquisition
157167
if address.input:
158168
assert isinstance(config, AcquisitionConfig)

0 commit comments

Comments
 (0)