From b31d6721cc215ee1378d024899e783740f072d2b Mon Sep 17 00:00:00 2001 From: stedif <stefano.difrischia@inaf.it> Date: Fri, 17 Dec 2021 13:07:24 +0100 Subject: [PATCH] L2SS-480: add signal delays attributes to RECV --- tangostationcontrol/tangostationcontrol/devices/recv.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tangostationcontrol/tangostationcontrol/devices/recv.py b/tangostationcontrol/tangostationcontrol/devices/recv.py index 7bf3bef64..9a219967c 100644 --- a/tangostationcontrol/tangostationcontrol/devices/recv.py +++ b/tangostationcontrol/tangostationcontrol/devices/recv.py @@ -66,8 +66,10 @@ class RECV(opcua_device): # The 32 delays deconstruct as delays[polarisation][dipole], and each delay is the number of 'delay steps' to apply (0.5ns for HBAT1). HBAT_BF_delays_R = attribute_wrapper(comms_annotation=["HBAT_BF_delays_R" ],datatype=numpy.int64 , dims=(32,96)) HBAT_BF_delays_RW = attribute_wrapper(comms_annotation=["HBAT_BF_delays_RW" ],datatype=numpy.int64 , dims=(32,96), access=AttrWriteType.READ_WRITE) - HBAT_BF_weights_R = attribute_wrapper(comms_annotation=["HBAT_BF_delays_R" ],datatype=numpy.int64 , dims=(32,96)) - HBAT_BF_weights_RW = attribute_wrapper(comms_annotation=["HBAT_BF_delays_RW" ],datatype=numpy.int64 , dims=(32,96), access=AttrWriteType.READ_WRITE) + HBAT_BF_signal_delays_R = attribute_wrapper(comms_annotation=["HBAT_BF_signal_delays_R" ],datatype=numpy.int64 , dims=(32,96)) + HBAT_BF_signal_delays_RW = attribute_wrapper(comms_annotation=["HBAT_BF_signal_delays_RW" ],datatype=numpy.int64 , dims=(32,96), access=AttrWriteType.READ_WRITE) + HBAT_BF_weights_R = attribute_wrapper(comms_annotation=["HBAT_BF_weights_R" ],datatype=numpy.int64 , dims=(32,96)) + HBAT_BF_weights_RW = attribute_wrapper(comms_annotation=["HBAT_BF_weights_RW" ],datatype=numpy.int64 , dims=(32,96), access=AttrWriteType.READ_WRITE) HBAT_LED_on_R = attribute_wrapper(comms_annotation=["HBAT_LED_on_R" ],datatype=numpy.bool_ , dims=(32,96)) HBAT_LED_on_RW = attribute_wrapper(comms_annotation=["HBAT_LED_on_RW" ],datatype=numpy.bool_ , dims=(32,96), access=AttrWriteType.READ_WRITE) HBAT_PWR_LNA_on_R = attribute_wrapper(comms_annotation=["HBAT_PWR_LNA_on_R" ],datatype=numpy.bool_ , dims=(32,96)) -- GitLab