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 REMOTE before clients can take control again.

Note: LOCAL control 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.

__new__(value)