diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2024-10-13 13:48:05 -0400 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2024-10-13 13:48:05 -0400 |
commit | 0a964fafe35b89b4e09bc91311ce818cb4edbb7d (patch) | |
tree | 92959ea9e9429838f4b52ad89b20fb2227121cb8 | |
parent | 9c9ea5bcc9d2d241b635c507991cbc690a9e8e27 (diff) | |
download | qolab-0a964fafe35b89b4e09bc91311ce818cb4edbb7d.tar.gz qolab-0a964fafe35b89b4e09bc91311ce818cb4edbb7d.zip |
add formatter to the out string
-rw-r--r-- | qolab/hardware/scope/sds800xhd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qolab/hardware/scope/sds800xhd.py b/qolab/hardware/scope/sds800xhd.py index 846ac83..b7eef5f 100644 --- a/qolab/hardware/scope/sds800xhd.py +++ b/qolab/hardware/scope/sds800xhd.py @@ -120,7 +120,7 @@ class SDS800XHD(SDS1104X): self.write(f":WAVeform:POINt {Npnts}") # transfer all points trRaw = Trace(f"Ch{chNum}") - self.write(":WAVeform:SOURce C{chNum}") + self.write(f":WAVeform:SOURce C{chNum}") qstr = f":WAVeform:DATA?" if self.resource.interface_type == InterfaceType.usb: # Setting chunk size to 496 bytes, it seems that SDS sends data |