etherlab/extension.py
author Laurent Bessard
Fri, 05 Apr 2013 00:14:00 +0200
changeset 2119 5460eba6c5e0
parent 2111 f2cffda17d00
permissions -rw-r--r--
Fixed ethercat test with higen drive project
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))