Skip to content
Snippets Groups Projects
Commit 608b4d83 authored by Sander de Snoo's avatar Sander de Snoo
Browse files

Fixed missing AWG flush for markers on AWG channel

parent 2b13027a
No related branches found
No related tags found
No related merge requests found
......@@ -185,6 +185,12 @@ class QsUploader:
channel_number = awg_channel.channel_number
# empty AWG queue
self.AWGs[awg_name].awg_flush(channel_number)
for marker_channel in self.marker_channels.values():
awg_name = marker_channel.module_name
channel_number = marker_channel.channel_number
if channel_number > 0:
# empty AWG queue
self.AWGs[awg_name].awg_flush(channel_number)
# queue waveforms
for channel_name, queue in job.channel_queues.items():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment