Skip to content
Snippets Groups Projects
Commit 53dc41f3 authored by Stefano Di Frischia's avatar Stefano Di Frischia
Browse files

L2SS-574: add info properties to RECV

parent 03c4d25e
Branches
Tags
1 merge request!234Resolve L2SS-574 "Move hbat code to recv"
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
""" """
# PyTango imports # PyTango imports
from email.policy import default
from tango import DebugIt from tango import DebugIt
from tango.server import command from tango.server import command
from tango.server import device_property, attribute from tango.server import device_property, attribute
...@@ -92,6 +93,18 @@ class RECV(opcua_device): ...@@ -92,6 +93,18 @@ class RECV(opcua_device):
default_value = numpy.zeros((96,32), dtype=numpy.float64) 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 = [ first_default_settings = [
# set the masks first, as those filter any subsequent settings # set the masks first, as those filter any subsequent settings
'ANT_mask_RW', 'ANT_mask_RW',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment