diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2024-10-11 10:35:09 -0400 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2024-10-11 10:35:09 -0400 |
commit | 0fc099f0bdbdebae162b16d00daa81b9bf7a2299 (patch) | |
tree | a76b8414e1199ea17729470db5a2a4cb35a547aa /qolab/hardware | |
parent | 9332101350ab84234731debf56aaba1cd82b13ac (diff) | |
download | qolab-0fc099f0bdbdebae162b16d00daa81b9bf7a2299.tar.gz qolab-0fc099f0bdbdebae162b16d00daa81b9bf7a2299.zip |
set timeout for the scope
Diffstat (limited to 'qolab/hardware')
-rw-r--r-- | qolab/hardware/scope/sds800xhd.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qolab/hardware/scope/sds800xhd.py b/qolab/hardware/scope/sds800xhd.py index 6e6f231..561f308 100644 --- a/qolab/hardware/scope/sds800xhd.py +++ b/qolab/hardware/scope/sds800xhd.py @@ -24,6 +24,7 @@ class SDS800XHD(SDS1104X): super().__init__(resource, *args, **kwds) self.config["Device model"] = "SDS800XHD" self.resource.read_termination = "\n" + self.resource.timeout=1000 self.numberOfChannels = 4 self.maxRequiredPoints = 1000 # desired number of points per channel, can return twice more |