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

L2SS-358: Ant -> ANT, updated ADC lock reference

parent b053f830
No related branches found
No related tags found
1 merge request!163L2SS-358: Update configuration for DarkRAI
......@@ -63,7 +63,7 @@ class RECV(opcua_device):
# ----------
# Attributes
# ----------
Ant_status_R = attribute(dtype=str, max_dim_x=3, max_dim_y=32)
ANT_status_R = attribute(dtype=str, max_dim_x=3, max_dim_y=32)
ANT_mask_RW = attribute_wrapper(comms_annotation=["ANT_mask_RW" ],datatype=numpy.bool_ , dims=(3,32), access=AttrWriteType.READ_WRITE)
HBAT_BF_delays_R = attribute_wrapper(comms_annotation=["HBAT_BF_delays_R" ],datatype=numpy.int64 , dims=(32,96))
......@@ -192,7 +192,7 @@ class RECV(opcua_device):
return rcu_status
def read_Ant_status_R(self):
def read_ANT_status_R(self):
""" Returns a set of strings denoting the status of each antenna.
An empty string means no problems were detected. A non-empty
......@@ -200,9 +200,9 @@ class RECV(opcua_device):
This function can be used as input to modify the Ant_mask_RW. """
ant_mask = self.Ant_mask_RW
ant_mask = self.ANT_mask_RW
rcu_mask = self.RCU_mask_RW
adc_lock = self.RCU_ADC_lock_R
adc_lock = self.RCU_ADC_locked_R
i2c_errors = self.RCU_I2C_STATUS_R
nr_rcus = len(ant_mask)
......
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