etherlab/extension.py
author Edouard Tisserant
Thu, 04 Apr 2013 17:50:43 +0900
changeset 2114 fc1bc441cf71
parent 2111 f2cffda17d00
permissions -rw-r--r--
Added logging based on collecting Kernel logs
import features

def GetEtherLabLibClass():
    from EthercatMaster import EtherlabLibrary
    return EtherlabLibrary

features.libraries.append(
    ('Etherlab', GetEtherLabLibClass))

def GetEtherLabClass():
    from etherlab import RootClass
    return RootClass

features.catalog.append(
    ('etherlab', _('EtherCat Master'), _('Map located variables over EtherCat'), GetEtherLabClass))