Skip to content
Snippets Groups Projects
Commit 8154dc12 authored by Lan Dam's avatar Lan Dam
Browse files

correct typo DPS to DSP

parent 7dc90547
No related branches found
No related tags found
1 merge request!120fixing displayed extreme values for channels
...@@ -203,7 +203,7 @@ class LogInfo(): ...@@ -203,7 +203,7 @@ class LogInfo():
return False return False
return epoch, disk, val return epoch, disk, val
def read_dps_clock_diff(self, line: str def read_dsp_clock_diff(self, line: str
) -> Union[bool, Tuple[float, float]]: ) -> Union[bool, Tuple[float, float]]:
""" """
Read DPS clock difference Read DPS clock difference
...@@ -415,11 +415,11 @@ class LogInfo(): ...@@ -415,11 +415,11 @@ class LogInfo():
if epoch: if epoch:
self.add_chan_info('Jerks/DSP Sets', epoch, 0, idx) self.add_chan_info('Jerks/DSP Sets', epoch, 0, idx)
elif "DPS clock diff" in line: elif "DSP CLOCK DIFFERENCE" in line:
ret = self.read_dps_clock_diff() ret = self.read_dsp_clock_diff(line)
if ret: if ret:
epoch, total = ret epoch, total = ret
self.add_chan_info('DPS Clock Diff', epoch, total, idx) self.add_chan_info('DSP Clock Diff', epoch, total, idx)
elif "ACQUISITION STARTED" in line: elif "ACQUISITION STARTED" in line:
epoch = self.simple_read(line)[1] epoch = self.simple_read(line)[1]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment