Skip to content
Snippets Groups Projects
Commit e172f8d4 authored by Thomas Juerges's avatar Thomas Juerges
Browse files

Match the array sizes with what the server returns

parent 61837366
No related branches found
No related tags found
No related merge requests found
......@@ -183,24 +183,26 @@ class PCC(Device):
)
HBA_element_beamformer_delays_R = attribute(
dtype=((numpy.int32,),),
max_dim_x = 3, max_dim_y = 1024,
dtype=((numpy.int64,),),
max_dim_x = 96, max_dim_y = 32,
)
HBA_element_beamformer_delays_RW = attribute(
dtype=((numpy.int32,),),
max_dim_x = 3, max_dim_y = 1024,
dtype=((numpy.int64,),),
max_dim_x = 96, max_dim_y = 32,
access=AttrWriteType.READ_WRITE,
)
# See https://git.astron.nl/lofar2.0/pypcc/-/issues/6
HBA_element_led_R = attribute(
dtype=((numpy.int32,),),
max_dim_x = 3, max_dim_y = 1024,
dtype=((numpy.int64,),),
max_dim_x = 96, max_dim_y = 32,
)
# See https://git.astron.nl/lofar2.0/pypcc/-/issues/6
HBA_element_led_RW = attribute(
dtype=((numpy.int32,),),
max_dim_x = 3, max_dim_y = 1024,
dtype=((numpy.int64,),),
max_dim_x = 96, max_dim_y = 32,
access=AttrWriteType.READ_WRITE,
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment