all: rename parameters to accessibles in module classes

+ make accesses to <module>.parameters work again

Change-Id: I91c09b0f9f5f28d78cd644f83a96c8772e5977e5
Reviewed-on: https://forge.frm2.tum.de/review/20249
Tested-by: JenkinsCodeReview <bjoern_pedersen@frm2.tum.de>
Reviewed-by: Markus Zolliker <markus.zolliker@psi.ch>
Reviewed-by: Enrico Faulhaber <enrico.faulhaber@frm2.tum.de>
Tested-by: Enrico Faulhaber <enrico.faulhaber@frm2.tum.de>
This commit is contained in:
Enrico Faulhaber
2019-03-27 17:08:57 +01:00
parent 08a92029a9
commit 4068516178
8 changed files with 36 additions and 35 deletions

View File

@ -163,7 +163,7 @@ class PyTangoDevice(Module):
execution and attribute operations with logging and exception mapping.
"""
parameters = {
accessibles = {
'comtries': Parameter('Maximum retries for communication',
datatype=IntRange(1, 100), default=3, readonly=False,
group='communication'),
@ -430,7 +430,7 @@ class AnalogOutput(PyTangoDevice, Drivable):
controllers, ...
"""
parameters = {
accessibles = {
'userlimits': Parameter('User defined limits of device value',
datatype=TupleOf(FloatRange(), FloatRange()),
default=(float('-Inf'), float('+Inf')),
@ -608,7 +608,7 @@ class Actuator(AnalogOutput):
"""
# for secop: support the speed and ramp parameters
parameters = {
accessibles = {
'speed': Parameter('The speed of changing the value',
unit='main/s', readonly=False, datatype=FloatRange(0),
),
@ -648,7 +648,7 @@ class Motor(Actuator):
It has the ability to move a real object from one place to another place.
"""
parameters = {
accessibles = {
'refpos': Parameter('Reference position',
datatype=FloatRange(), unit='main',
),
@ -688,7 +688,7 @@ class TemperatureController(Actuator):
"""A temperature control loop device.
"""
parameters = {
accessibles = {
'p': Parameter('Proportional control Parameter', datatype=FloatRange(),
readonly=False, group='pid',
),
@ -763,7 +763,7 @@ class PowerSupply(Actuator):
"""A power supply (voltage and current) device.
"""
parameters = {
accessibles = {
'ramp': Parameter('Current/voltage ramp', unit='main/min',
datatype=FloatRange(), readonly=False, poll=30,),
'voltage': Parameter('Actual voltage', unit='V',
@ -801,7 +801,7 @@ class NamedDigitalInput(DigitalInput):
"""A DigitalInput with numeric values mapped to names.
"""
parameters = {
accessibles = {
'mapping': Parameter('A dictionary mapping state names to integers',
datatype=StringType(), export=False), # XXX:!!!
}
@ -824,7 +824,7 @@ class PartialDigitalInput(NamedDigitalInput):
bit width accessed.
"""
parameters = {
accessibles = {
'startbit': Parameter('Number of the first bit',
datatype=IntRange(0), default=0),
'bitwidth': Parameter('Number of bits',
@ -868,7 +868,7 @@ class NamedDigitalOutput(DigitalOutput):
"""A DigitalOutput with numeric values mapped to names.
"""
parameters = {
accessibles = {
'mapping': Parameter('A dictionary mapping state names to integers',
datatype=StringType(), export=False),
}
@ -894,7 +894,7 @@ class PartialDigitalOutput(NamedDigitalOutput):
bit width accessed.
"""
parameters = {
accessibles = {
'startbit': Parameter('Number of the first bit',
datatype=IntRange(0), default=0),
'bitwidth': Parameter('Number of bits',
@ -925,7 +925,7 @@ class StringIO(PyTangoDevice, Module):
receives strings.
"""
parameters = {
accessibles = {
'bustimeout': Parameter('Communication timeout',
datatype=FloatRange(), readonly=False,
unit='s', group='communication'),