etherlab/extension.py
author Laurent Bessard
Tue, 24 Sep 2013 00:50:02 +0200
changeset 2158 7132aa34188d
parent 2111 f2cffda17d00
permissions -rw-r--r--
Fixed higen example removing obsolete attribute in CIA402 node params file
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))