Commit 4ea0b6c3 authored by Elisabetta Giani's avatar Elisabetta Giani
Browse files

Merge branch 'CT-60' to the master.

Include support for the SKA Base classes >= 0.6.0
(ADR-8 subarray state machine).
parents 9299ba91 34d97a12
Loading
Loading
Loading
Loading
Loading
+16 −0
Original line number Diff line number Diff line
0.6.3
- use ska-python-buildenv and runtime 9.3.2
- use lmcbaseclasses ver 0.6.3
- Add support for Off and ObsReset commands
- Fix type_in argument for Scan (now it accepts a DevString instead of a DevStringVarArray)
- EndScan to discuss actual implementation

0.6.2
- Finalized support for Configure command.
- Added GoToIdle command subclassing the ActionCommand class.

0.6.1
- adding support for Configure command

0.6.0
- start implementing lmcbaseclasses 0.6.0
0.5.12

- push event on obsState
+1 −1
Original line number Diff line number Diff line
@@ -638,7 +638,7 @@ class CspMaster(SKAMaster):
        # build the list with the Capability monitor devices
        for fqdn in self._capability_monitor_fqdn:
            try:
                self._capability_monitor_proxy[fqdn] = tango.DeviceProxy(fqdn)
                self._capability_monitor_proxy[fqdn] = DeviceProxy(fqdn)
            except tango.DevFailed as tango_err:
                self.logger.warning(tango_err.args[0].desc)
            
+1183 −875

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@
"""Release information for Python Package"""

name = """csp-lmc-common"""
version = "0.5.12"
version = "0.6.3"
version_info = version.split(".")
description = """SKA CSP.LMC Common Software"""
author = "INAF-OAA"
+3 −3
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
"""Release information for Python Package"""

name = """csplmc-common"""
version = "0.5.12"
version = "0.6.3"
version_info = version.split(".")
description = """SKA CSP.LMC Common Classe"""
author = "E.G"
@@ -18,5 +18,5 @@ license = """BSD-3-Clause"""
url = """www.tango-controls.org"""
copyright = """"""

release=0.5.11
tag=csp-lmc-common-0.5.12
release=0.6.3
tag=csp-lmc-common-0.6.3
Loading