We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40c1aed commit 00b72dcCopy full SHA for 00b72dc
1 file changed
can/interfaces/pcan/basic.py
@@ -357,6 +357,8 @@ def __init__(self):
357
# Loads the PCANBasic.dll
358
if platform.system() == 'Windows':
359
self.__m_dllBasic = windll.LoadLibrary("PCANBasic")
360
+ elif 'CYGWIN' in platform.system():
361
+ self.__m_dllBasic = cdll.LoadLibrary("PCANBasic.dll")
362
elif platform.system() == 'Darwin':
363
self.__m_dllBasic = cdll.LoadLibrary('libPCBUSB.dylib')
364
else:
0 commit comments