etherlab/extension.py
author Edouard Tisserant
Thu, 28 Mar 2013 18:06:03 +0900
changeset 2109 86832a0e113d
parent 2086 8e4992e0f147
child 2111 f2cffda17d00
permissions -rw-r--r--
Stripped useless depricated comments, changed print format of sdo abort code
import features

def GetEtherLabLibClass():
    from etherlab 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))