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

Flush all AWG channels at startup

parent f776fac0
No related branches found
No related tags found
No related merge requests found
......@@ -43,10 +43,14 @@ class M3202A_Uploader:
self.jobs = []
self.acq_description = None
self.release_all_awg_memory()
self._init_awgs()
self._config_marker_channels()
def _init_awgs(self):
self.release_all_awg_memory()
for awg in self.AWGs.values():
for ch in [1,2,3,4]:
awg.awg_flush(ch)
def _config_marker_channels(self):
for channel in self.marker_channels.values():
......
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