etherlab/extension.py
author Laurent Bessard
Mon, 30 Sep 2013 13:43:02 +0200
changeset 2161 4bea1d98db46
parent 2111 f2cffda17d00
permissions -rw-r--r--
Fixed bug in information returned for module where entries are defined only in PDO mapping
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))