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

Merge branch 'L2SS-981_fix_property_names' into 'master'

Resolve L2SS-981 "Fix property names"

Closes L2SS-981

See merge request !433
parents b99ee0f0 65d3a853
No related branches found
No related tags found
1 merge request!433Resolve L2SS-981 "Fix property names"
......@@ -69,7 +69,7 @@ class RECV(opcua_device):
default_value=[0] * 96
)
RCU_PWR_ANT_on_RW = device_property(
RCU_PWR_ANT_on_RW_default = device_property(
dtype='DevVarBooleanArray',
mandatory=False,
default_value=[False] * 96 # turn power off by default in test setups, f.e. to prevent blowing up the noise sources
......
......@@ -59,20 +59,20 @@ class SDP(opcua_device):
# If we enable the waveform generator, we want some sane defaults.
FPGA_wg_amplitude_RW = device_property(
FPGA_wg_amplitude_RW_default = device_property(
dtype='DevVarDoubleArray',
mandatory=False,
default_value=[[0.1] * 12] * 16
)
FPGA_wg_frequency_RW = device_property(
FPGA_wg_frequency_RW_default = device_property(
dtype='DevVarDoubleArray',
mandatory=False,
# Emit a signal on subband 102
default_value=[[102 * 200e6/1024] * 12] * 16
)
FPGA_wg_phase_RW = device_property(
FPGA_wg_phase_RW_default = device_property(
dtype='DevVarDoubleArray',
mandatory=False,
default_value=[[0.0] * 12] * 16
......
......@@ -63,12 +63,6 @@ class UNB2(opcua_device):
N_DDR = 2
N_QSFP = 6
UNB2_mask_RW_default = device_property(
dtype='DevVarBooleanArray',
mandatory=False,
default_value=[True] * 2
)
TRANSLATOR_DEFAULT_SETTINGS = [
'UNB2_mask_RW',
'UNB2TR_monitor_rate_RW'
......
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