def getDiamondDeviceSet():
    '''return list of devices filtered according to diamondFilter'''
    if doFilter:
        return ethercat.filteredDescriptions(ethercat.getAllDevices())
    else:
        return ethercat.getAllDevices()
Ejemplo n.º 2
0
def getDiamondDeviceSet():
    '''return list of devices filtered according to diamondFilter'''
    if doFilter:
        return ethercat.filteredDescriptions(ethercat.getAllDevices())
    else:
        return ethercat.getAllDevices()
Ejemplo n.º 3
0
 def testContents(self):
     self.assertTrue( len(ethercat.getAllDevices()) > 0 )