Skip to content
Snippets Groups Projects
Commit 6361dfa8 authored by Jan David Mol's avatar Jan David Mol
Browse files

correctly trigger recalibration on SDPFirmware instead of assuming the events come from SDP

parent dd28cd4e
Branches
Tags
1 merge request!852Rollout fixes for v0.28.1
...@@ -119,9 +119,8 @@ class Calibration(LOFARDevice): ...@@ -119,9 +119,8 @@ class Calibration(LOFARDevice):
for k, ant in self.ant_proxies.items(): for k, ant in self.ant_proxies.items():
# Recalibrate associated AntennaFields # Recalibrate associated AntennaFields
sdpfirmware_device = ant.SDPFirmware_device_R sdpfirmware_device = ant.SDPFirmware_device_R
sdp_device = self.sdpfirmware_proxies[sdpfirmware_device].SDP_device_R
if device_name_matches(sdp_device, event.device.name()): if device_name_matches(sdpfirmware_device, event.device.name()):
self._calibrate_antenna_field(k) self._calibrate_antenna_field(k)
# TODO(JDM): While we could read this from our control parent (StationManager), # TODO(JDM): While we could read this from our control parent (StationManager),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment