Skip to content

Commit

Permalink
Allow use of Aillio R1 winusb driver
Browse files Browse the repository at this point in the history
Changes windows to use libusb_package which includes the required dlls to allow artisan to connect to R1 without any modification of drivers. Removes unnecessary libusb drivers from windows build process
  • Loading branch information
bsperduto committed Jan 27, 2024
1 parent 593cf90 commit eb805c0
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 24 deletions.
4 changes: 0 additions & 4 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,7 @@ for:

# pull library versions from requirments file
- ps: $env:PYINSTALLER_VER = Select-String -Path ./src/requirements.txt "pyinstaller==([\d\.]*).*platform_system='Windows'" -List | ForEach-Object {$_.Matches.Groups[1].Value}
- ps: $env:LIBUSB_VER = Select-String -Path ./src/requirements.txt "libusb==([\d\.]*).*platform_system='Windows'" -List | ForEach-Object {$_.Matches.Groups[1].Value}
- ps: Write-Host "PYINSTALLER_VER= $env:PYINSTALLER_VER"
- ps: Write-Host "LIBUSB_VER= $env:LIBUSB_VER"

# update path env var
- cmd: set PATH=%PYTHON_PATH%;%PYTHON_PATH%\Scripts;%PATH%
Expand Down Expand Up @@ -145,9 +143,7 @@ for:

# pull library versions from requirments file
- ps: $env:PYINSTALLER_VER = Select-String -Path ./src/requirements.txt "pyinstaller==([\d\.]*).*platform_system='Windows'" -List | ForEach-Object {$_.Matches.Groups[1].Value}
- ps: $env:LIBUSB_VER = Select-String -Path ./src/requirements.txt "libusb==([\d\.]*).*platform_system='Windows'" -List | ForEach-Object {$_.Matches.Groups[1].Value}
- ps: Write-Host "PYINSTALLER_VER= $env:PYINSTALLER_VER"
- ps: Write-Host "LIBUSB_VER= $env:LIBUSB_VER"

# update path env var
- cmd: set PATH=%PYTHON_PATH%;%PYTHON_PATH%\Scripts;%PATH%
Expand Down
10 changes: 0 additions & 10 deletions .ci/install-win.bat
Original file line number Diff line number Diff line change
Expand Up @@ -93,16 +93,6 @@ if not exist vc_redist.x64.exe (exit /b 140)
copy "%PYTHON_PATH%\Lib\site-packages\snap7\lib\snap7.dll" "C:\Windows"
if not exist "C:\Windows\snap7.dll" (exit /b 150)

::
:: download and copy the libusb-win32 dll. NOTE-the version number for libusb is set in the requirements-win*.txt file.
::
echo curl libusb-win32
curl -k -L -O https://netcologne.dl.sourceforge.net/project/libusb-win32/libusb-win32-releases/%LIBUSB_VER%/libusb-win32-bin-%LIBUSB_VER%.zip
if not exist libusb-win32-bin-%LIBUSB_VER%.zip (exit /b 160)
7z x libusb-win32-bin-%LIBUSB_VER%.zip
copy "libusb-win32-bin-%LIBUSB_VER%\bin\amd64\libusb0.dll" "C:\Windows\SysWOW64"
if not exist "C:\Windows\SysWOW64\libusb0.dll" (exit /b 170)

::
:: show set of libraries are installed
::
Expand Down
5 changes: 0 additions & 5 deletions src/artisan-win.spec
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ PYQT_QT_BIN = PYQT_QT + r'\bin'
PYQT_QT_TRANSLATIONS = QT_TRANSL
YOCTO_BIN = PYTHON_PACKAGES + r'\yoctopuce\cdll'
SNAP7_BIN = r'C:\Windows'
LIBUSB_BIN = r'C:\Windows\SysWOW64'

from PyInstaller.utils.hooks import is_module_satisfies
if is_module_satisfies('scipy >= 1.3.2'):
Expand Down Expand Up @@ -233,10 +232,6 @@ copy_file(YOCTO_BIN + r'\yapi64.dll', TARGET + '_internal\yoctopuce\cdll')
# copy Snap7 lib
copy_file(SNAP7_BIN + r'\snap7.dll', TARGET)

# copy libusb0.1 lib

copy_file(LIBUSB_BIN + r'\libusb0.dll', TARGET + '_internal')

for fn in [
'artisan.png',
'artisanAlarms.ico',
Expand Down
18 changes: 14 additions & 4 deletions src/artisanlib/aillio.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@

import array

if system().startswith('Windows'):
import libusb_package

#import requests
#from requests_file import FileAdapter # type: ignore # @UnresolvedImport
#import json
Expand Down Expand Up @@ -124,11 +127,18 @@ def __open(self) -> None:
return
if self.usbhandle is not None:
return
self.usbhandle = usb.core.find(idVendor=self.AILLIO_VID,
idProduct=self.AILLIO_PID)
if self.usbhandle is None:
if not system().startswith('Windows'):
self.usbhandle = usb.core.find(idVendor=self.AILLIO_VID,
idProduct=self.AILLIO_PID_REV3)
idProduct=self.AILLIO_PID)
if self.usbhandle is None:
self.usbhandle = usb.core.find(idVendor=self.AILLIO_VID,
idProduct=self.AILLIO_PID_REV3)
else:
self.usbhandle = libusb_package.find(idVendor=self.AILLIO_VID,
idProduct=self.AILLIO_PID)
if self.usbhandle is None:
self.usbhandle = libusb_package.find(idVendor=self.AILLIO_VID,
idProduct=self.AILLIO_PID_REV3)
if self.usbhandle is None:
raise OSError('not found or no permission')
self.__dbg('device found!')
Expand Down
2 changes: 1 addition & 1 deletion src/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
# the following commented package versions are read by appveyor.yml and downloaded outside of pip.
#
# pyinstaller==6.3.0; platform_system='Windows'
# libusb==1.2.7.3; platform_system='Windows' #1.2.6.0
# libusb==1.0.26; platform_system='Linux'
#
# HACK: temporary require an older version of Pillow (PIL) as the current v10.0.0 breaks py2app on macOS
Expand Down Expand Up @@ -117,3 +116,4 @@ SecretStorage==3.3.3; platform_system=='Linux'
build==1.0.3; platform_system=='Windows' # required to build pyinstaller bootloader
pywin32==306; platform_system=='Windows'
pyinstaller-versionfile==2.1.1; platform_system=='Windows'
libusb-package==1.0.26.2; platform_system=='Windows'

0 comments on commit eb805c0

Please sign in to comment.