We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29a235b commit 440ef72Copy full SHA for 440ef72
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