1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
"""
Ctypes wrapper module for IXXAT Virtual CAN Interface V4 on win32 systems
Copyright (C) 2016-2021 Giuseppe Corbelli <giuseppe.corbelli@weightpack.com>
"""
__all__ = [
"IXXATBus",
"canlib",
"canlib_vcinpl",
"canlib_vcinpl2",
"constants",
"exceptions",
"get_ixxat_hwids",
"structures",
]
from can.interfaces.ixxat.canlib import IXXATBus
# import this and not the one from vcinpl2 for backward compatibility
from can.interfaces.ixxat.canlib_vcinpl import get_ixxat_hwids
|