etherlab/extension.py
author Laurent Bessard
Tue, 25 Jun 2013 00:55:38 +0200
changeset 2156 c8eee6be2da8
parent 2111 f2cffda17d00
permissions -rw-r--r--
Added bug in support for set flag for optional variables activation in axis public struct
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))