From 53dc41f3bf53dcbde46e7406ddb2a5083da58297 Mon Sep 17 00:00:00 2001
From: stedif <stefano.difrischia@inaf.it>
Date: Tue, 1 Feb 2022 12:51:04 +0100
Subject: [PATCH] L2SS-574: add info properties to RECV

---
 .../tangostationcontrol/devices/recv.py             | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/tangostationcontrol/tangostationcontrol/devices/recv.py b/tangostationcontrol/tangostationcontrol/devices/recv.py
index 0084b7807..f0937b091 100644
--- a/tangostationcontrol/tangostationcontrol/devices/recv.py
+++ b/tangostationcontrol/tangostationcontrol/devices/recv.py
@@ -12,6 +12,7 @@
 """
 
 # PyTango imports
+from email.policy import default
 from tango import DebugIt
 from tango.server import command
 from tango.server import device_property, attribute
@@ -92,6 +93,18 @@ class RECV(opcua_device):
         default_value = numpy.zeros((96,32), dtype=numpy.float64)
     )
 
+    ITRF_Reference_Frame = device_property(
+        dtype='DevString',
+        mandatory=False,
+        default_value = "ITRF2005"
+    )
+
+    ITRF_Reference_Epoch = device_property(
+        dtype='DevFloat',
+        mandatory=False,
+        default_value = 2015.5
+    )
+
     first_default_settings = [
         # set the masks first, as those filter any subsequent settings
         'ANT_mask_RW',
-- 
GitLab