etherlab/extension.py
author Laurent Bessard
Tue, 30 Apr 2013 01:39:54 +0200
changeset 2142 f407a0e154c5
parent 2111 f2cffda17d00
permissions -rw-r--r--
Update higen drive example introducing usage of csv mode
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))