Control Mode
- class ska_control_model.ControlMode(value)
Python enumerated type for control mode.
- LOCAL = 1
Monitoring and control operations are accepted only from a “local” client.
Commands and queries received from TM or any other “remote” clients are ignored.
This mode is typically activated by a switch, or a connection on the local control interface. The intention is to support early integration of dishes and stations. The equipment has to be put back in
REMOTEbefore clients can take control again.Note:
LOCALcontrol mode is not a safety feature, but rather a usability feature. Safety must be implemented separately from the control paths.
- REMOTE = 0
Monitoring and control operations are accepted from all clients.
- __init_subclass__()
This method is called when a class is subclassed.
The default implementation does nothing. It may be overridden to extend subclasses.
- static __new__(cls, value)