[SOLVED] ramp.py will not run correctly on win7 IA64
Posted: Mon Dec 01, 2014 2:31 pm
The python libraries needed a small fix on my Win7 system before they would run.
My OS is Win7 pro, running on IA64. I am using pyusb-1.0.0a2 with libusb-win32-1.2.6.0.
If I attempt to run ramp.py with the libraries provided it throws
USBError: [Errno None] libusb0-dll:err [set_configuration] could not set config 1: win error: The parameter is incorrect.
The fix is to remove the lines
if os.name == "nt":
import usb.backend.libusb0 as libusb0
pyusb_backend = libusb0.get_backend()
from crazyradio.py
Thanks for a great product!
My OS is Win7 pro, running on IA64. I am using pyusb-1.0.0a2 with libusb-win32-1.2.6.0.
If I attempt to run ramp.py with the libraries provided it throws
USBError: [Errno None] libusb0-dll:err [set_configuration] could not set config 1: win error: The parameter is incorrect.
The fix is to remove the lines
if os.name == "nt":
import usb.backend.libusb0 as libusb0
pyusb_backend = libusb0.get_backend()
from crazyradio.py
Thanks for a great product!