diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2024-07-26 11:38:11 -0400 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2024-07-26 11:38:11 -0400 |
commit | c13de53d9aa408652e499ab3ea0807982ea9c0d1 (patch) | |
tree | cc373157dd9e58d5e2d92ebaaeafd9c7b69f4ec8 /qolab/hardware/scope/rigolds1054z.py | |
parent | d325769c66db0ecf06152eadd39c4f38db7d3b18 (diff) | |
download | qolab-c13de53d9aa408652e499ab3ea0807982ea9c0d1.tar.gz qolab-c13de53d9aa408652e499ab3ea0807982ea9c0d1.zip |
Simplified trace return variables for _basic scope and Rigol
Diffstat (limited to 'qolab/hardware/scope/rigolds1054z.py')
-rw-r--r-- | qolab/hardware/scope/rigolds1054z.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/qolab/hardware/scope/rigolds1054z.py b/qolab/hardware/scope/rigolds1054z.py index c78b648..01cbae4 100644 --- a/qolab/hardware/scope/rigolds1054z.py +++ b/qolab/hardware/scope/rigolds1054z.py @@ -409,7 +409,7 @@ class RigolDS1054z(ScopeSCPI): trRaw.config["unit"] = "Count" trRaw.config["tags"]["Decimate"] = decimate trRaw.config["tags"]["rawChanConfig"] = rawChanCfg - return (trRaw, rawChanCfg) + return trRaw def getTimeTrace(self, rawChanCfg): timePerDiv = self.getTimePerDiv() @@ -440,12 +440,13 @@ class RigolDS1054z(ScopeSCPI): In short decimate=True is slower but more precise. """ - trRaw, rawChanCfg = self.getRawWaveform( + trRaw = self.getRawWaveform( chNum, availableNpnts=availableNpnts, maxRequiredPoints=maxRequiredPoints, decimate=decimate, ) + rawChanCfg = trRaw.config["tags"]["rawChanConfig"] VoltageOffset = self.getChanVoltageOffset(chNum) VoltsPerDiv = self.getChanVoltsPerDiv(chNum) tr = trRaw @@ -458,7 +459,7 @@ class RigolDS1054z(ScopeSCPI): tr.config["unit"] = "Volt" tr.config["tags"]["VoltageOffset"] = VoltageOffset tr.config["tags"]["VoltsPerDiv"] = VoltsPerDiv - return (tr, rawChanCfg) + return tr if __name__ == "__main__": |