Skip to content
Snippets Groups Projects
Commit a2aa10d8 authored by Taya Snijder's avatar Taya Snijder
Browse files

L2SS-1103 added minimum and maximum values for RCU_DTH_PWR

parent 1b40e2c0
No related branches found
No related tags found
1 merge request!535Resolve L2SS-1103 "Add dab filter"
...@@ -593,6 +593,8 @@ class AntennaField(LOFARDevice): ...@@ -593,6 +593,8 @@ class AntennaField(LOFARDevice):
dtype=(numpy.float64,), dtype=(numpy.float64,),
max_dim_x=MAX_ANTENNA, max_dim_x=MAX_ANTENNA,
doc="RCU Dither source power (dBm). Range -25 to -4.", doc="RCU Dither source power (dBm). Range -25 to -4.",
min_value=-25,
max_value=-4,
) )
RCU_DTH_PWR_RW = MappedAttribute( RCU_DTH_PWR_RW = MappedAttribute(
"RCU_DTH_PWR_RW", "RCU_DTH_PWR_RW",
...@@ -600,6 +602,8 @@ class AntennaField(LOFARDevice): ...@@ -600,6 +602,8 @@ class AntennaField(LOFARDevice):
max_dim_x=MAX_ANTENNA, max_dim_x=MAX_ANTENNA,
access=AttrWriteType.READ_WRITE, access=AttrWriteType.READ_WRITE,
doc="RCU Dither source power (dBm). Range -25 to -4.", doc="RCU Dither source power (dBm). Range -25 to -4.",
min_value=-25,
max_value=-4,
) )
RCU_DAB_filter_on_R = MappedAttribute( RCU_DAB_filter_on_R = MappedAttribute(
"RCU_DAB_filter_on_R", "RCU_DAB_filter_on_R",
......
...@@ -256,6 +256,8 @@ class RECV(OPCUADevice): ...@@ -256,6 +256,8 @@ class RECV(OPCUADevice):
datatype=numpy.float64, datatype=numpy.float64,
dims=(N_rcu, N_rcu_inp), dims=(N_rcu, N_rcu_inp),
doc="RCU Dither source power (dBm). Range -25 to -4.", doc="RCU Dither source power (dBm). Range -25 to -4.",
min_value=-25,
max_value=-4,
) )
RCU_DTH_PWR_RW = AttributeWrapper( RCU_DTH_PWR_RW = AttributeWrapper(
comms_annotation=["RCU_DTH_PWR_RW"], comms_annotation=["RCU_DTH_PWR_RW"],
...@@ -263,6 +265,8 @@ class RECV(OPCUADevice): ...@@ -263,6 +265,8 @@ class RECV(OPCUADevice):
access=AttrWriteType.READ_WRITE, access=AttrWriteType.READ_WRITE,
dims=(N_rcu, N_rcu_inp), dims=(N_rcu, N_rcu_inp),
doc="RCU Dither source power (dBm). Range -25 to -4.", doc="RCU Dither source power (dBm). Range -25 to -4.",
min_value=-25,
max_value=-4,
) )
RCU_LED_green_on_R = AttributeWrapper( RCU_LED_green_on_R = AttributeWrapper(
comms_annotation=["RCU_LED_green_on_R"], datatype=bool, dims=(N_rcu,) comms_annotation=["RCU_LED_green_on_R"], datatype=bool, dims=(N_rcu,)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment