etherlab/extension.py
author Edouard Tisserant
Tue, 21 May 2013 16:03:40 +0900
changeset 2150 08514552944f
parent 2111 f2cffda17d00
permissions -rw-r--r--
Moved ratio scaling back to MCL. Rewrote CiA402 C part in a way it can be read and understood by some humans.
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))