forked from hardbyte/python-can
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
37 lines (31 loc) · 1.24 KB
/
__init__.py
File metadata and controls
37 lines (31 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# coding: utf-8
"""
Interfaces contain low level implementations that interact with CAN hardware.
"""
import warnings
from pkg_resources import iter_entry_points
# interface_name => (module, classname)
BACKENDS = {
"kvaser": ("can.interfaces.kvaser", "KvaserBus"),
"socketcan": ("can.interfaces.socketcan", "SocketcanBus"),
"serial": ("can.interfaces.serial.serial_can", "SerialBus"),
"pcan": ("can.interfaces.pcan", "PcanBus"),
"usb2can": ("can.interfaces.usb2can", "Usb2canBus"),
"ixxat": ("can.interfaces.ixxat", "IXXATBus"),
"nican": ("can.interfaces.nican", "NicanBus"),
"iscan": ("can.interfaces.iscan", "IscanBus"),
"virtual": ("can.interfaces.virtual", "VirtualBus"),
"neovi": ("can.interfaces.ics_neovi", "NeoViBus"),
"vector": ("can.interfaces.vector", "VectorBus"),
"slcan": ("can.interfaces.slcan", "slcanBus"),
"canalystii": ("can.interfaces.canalystii", "CANalystIIBus"),
"systec": ("can.interfaces.systec", "UcanBus"),
"seeedstudio": ("can.interfaces.seeedstudio", "SeeedBus"),
}
BACKENDS.update(
{
interface.name: (interface.module_name, interface.attrs[0])
for interface in iter_entry_points("can.interface")
}
)
VALID_INTERFACES = frozenset(list(BACKENDS.keys()))