diff options
author | Eddy Pedroni <eddy@0xf7.com> | 2022-05-31 11:22:18 +0200 |
---|---|---|
committer | Eddy Pedroni <eddy@0xf7.com> | 2022-05-31 11:22:18 +0200 |
commit | bff307e33bd1eb6e39d5edc76ce8f4434aba484d (patch) | |
tree | c24a2a9c5fdfabb60979d5826c2ae89502c94a34 /lab_control/test | |
parent | af1784badbede08bc14cf1f15085f2111c608cfc (diff) |
Fixed bug in frequency measurement
Diffstat (limited to 'lab_control/test')
-rw-r--r-- | lab_control/test/mock_sds1000xe_device.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lab_control/test/mock_sds1000xe_device.py b/lab_control/test/mock_sds1000xe_device.py index ce752e9..b4dd222 100644 --- a/lab_control/test/mock_sds1000xe_device.py +++ b/lab_control/test/mock_sds1000xe_device.py @@ -54,11 +54,12 @@ class MockSDS1000XEDevice: if opcode == "PAVA": arg = m.group("arg") value = self._channels[channelIndex].get(arg) + unit = "Hz" if arg == "FREQ" else "V" if value is None: return None else: - response = f"C{m.group('channel')}:PAVA {arg},{value:.6E}V" + response = f"C{m.group('channel')}:PAVA {arg},{value:.6E}{unit}" return response def stop(self) -> None: |