Skip to content
Snippets Groups Projects
Commit 4ce1ca0a authored by Thomas Juerges's avatar Thomas Juerges
Browse files

Correct writing to the wrong attribute value in HBA_element_led_RW

parent df1e8867
No related branches found
No related tags found
No related merge requests found
......@@ -663,7 +663,7 @@ class PCC(Device):
def read_HBA_element_led_R(self):
"""Return the HBA_element_led_R attribute."""
value = numpy.array(self.attribute_mapping["HBA_element_led_R"].get_value())
self._HBA_element_beamformer_delays_R = numpy.array(numpy.split(value, indices_or_sections = 32))
self._HBA_element_element_led_R = numpy.array(numpy.split(value, indices_or_sections = 32))
return self._HBA_element_led_R
@only_when_on
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment