etherlab/extension.py
author Laurent Bessard
Mon, 29 Apr 2013 11:07:32 +0200
changeset 2140 56643934495c
parent 2111 f2cffda17d00
permissions -rw-r--r--
Fixed bug in support for module extra params in EthercatCFileGenerator
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))