diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2024-07-22 13:51:33 -0400 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2024-07-22 13:51:33 -0400 |
commit | 9c316bfd705269d3e3b90bcfb7dbfa874dddd683 (patch) | |
tree | d83d12835c9d54d98caf9433bdacb4e107942bf0 /qolab/hardware/scope | |
parent | d420fd6b5b9c08c009f9fd3600ed0767135ef081 (diff) | |
download | qolab-9c316bfd705269d3e3b90bcfb7dbfa874dddd683.tar.gz qolab-9c316bfd705269d3e3b90bcfb7dbfa874dddd683.zip |
inctease timeout for stop wait
Diffstat (limited to 'qolab/hardware/scope')
-rw-r--r-- | qolab/hardware/scope/_basic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qolab/hardware/scope/_basic.py b/qolab/hardware/scope/_basic.py index 914f009..fde7bfc 100644 --- a/qolab/hardware/scope/_basic.py +++ b/qolab/hardware/scope/_basic.py @@ -107,7 +107,7 @@ class Scope(BasicInstrument): """Either enable run or stop the acquisition.""" raise NotImplementedError("setRun function is not implemented") - def _waitUntillStop(self, timeout=0.1): + def _waitUntillStop(self, timeout=1): """Wait until scope in the stop state. Just because we ask for a scope to stop, does not mean |