Re: [pyusb-users] Trying to write to OUT EP Bulk on Win10

2016-03-10 Thread Xiaofan Chen
On Wed, Mar 9, 2016 at 4:59 PM, Xiaofan Chen wrote: > On Wed, Mar 9, 2016 at 3:13 PM, Igor Bezenchuk wrote: >> I read at libusb maling list about usbdk which, from its description, should >> allow to attach and detach device drivers under windows. Did you hear about >> it? can it be combined with

Re: [pyusb-users] Trying to write to OUT EP Bulk on Win10

2016-03-09 Thread Xiaofan Chen
On Wed, Mar 9, 2016 at 3:13 PM, Igor Bezenchuk wrote: > I read at libusb maling list about usbdk which, from its description, should > allow to attach and detach device drivers under windows. Did you hear about > it? can it be combined with pyusb? Yes. It should be okay to work with pyusb. On th

Re: [pyusb-users] Trying to write to OUT EP Bulk on Win10

2016-03-08 Thread Igor Bezenchuk
forge.net > Subject: Re: [pyusb-users] Trying to write to OUT EP Bulk on Win10 > > On Tue, Mar 8, 2016 at 10:33 PM, Igor Bezenchuk wrote: > > I am Interested in generating random bulk traffic with libusb and pyusb > > through different bulk devices(i.e Flash drives etc...)

Re: [pyusb-users] Trying to write to OUT EP Bulk on Win10

2016-03-08 Thread Xiaofan Chen
On Tue, Mar 8, 2016 at 10:33 PM, Igor Bezenchuk wrote: > I am Interested in generating random bulk traffic with libusb and pyusb > through different bulk devices(i.e Flash drives etc...). > > pyusb does enumerate device and it's endpoints correctly but it fails to > write to them. > as I saw in ot

Re: [pyusb-users] Trying to write to OUT EP Bulk on Win10

2016-03-08 Thread Wander Lairson Costa
Hi, I think you may find the answer for your question in libusb mailing list. 2016-03-08 7:32 GMT-08:00 Igor Bezenchuk : > I am Interested in generating random bulk traffic with libusb and pyusb to > different bulk devices(i.e Flash drives etc...) ep buffers and check data > integrity. > I used

[pyusb-users] Trying to write to OUT EP Bulk on Win10

2016-03-08 Thread Igor Bezenchuk
I am Interested in generating random bulk traffic with libusb and pyusb through different bulk devices(i.e Flash drives etc...). I used this code: import usb.core# I used Gensys usb to sd card readerdev = usb.core.find(idVendor=0x05E3 , idProduct=0x0746)if dev is None:raise ValueError('Devic

[pyusb-users] Trying to write to OUT EP Bulk on Win10

2016-03-08 Thread Igor Bezenchuk
I am Interested in generating random bulk traffic with libusb and pyusb to different bulk devices(i.e Flash drives etc...) ep buffers and check data integrity.I used this code:import usb.core# I used Gensys usb to sd card readerdev = usb.core.find(idVendor=0x05E3 , idProduct=0x0746)if dev is Non