-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Device::claim_associated_interface
, Interface::enable_raw_io
, Interface::set_timeout_millisecond
for Windows
#52
Conversation
For the composite device claiming an associated interface on Windows platform.
claim_associated_interface
for windowsDevice::claim_associated_interface
, Interface::enable_raw_io
, Interface::set_timeout_millisecond
for Windows
For getting more precise connection speed.
Looks like a good start on several important things! Do you mind splitting the unrelated commits to separate PRs for easier review? Initial feedback: Add Device::claim_associated_interfaceTypically this library likes to expose OS functionality without too much abstraction on top of it, but this might be a case where there is a practical need for nusb to do more of the work. Doing this as a Windows-only API means a cross platform app has to know about and deal with this Windows quirk. It can also depend on how the driver is installed -- if a composite device is bound to WinUSB as a whole, it needs this. If the device is bound to usbccgp and individual interfaces bound to WinUSB, then the interfaces can be opened separately and use So I think what I'd like to see here for the whole-device WinUSB case, is that the first time opening any interface calls
This is true only when WinUSB is bound to the whole device. If a composite device is bound to usbccgp, each interface association descriptor group or interface outside of an IAD group will be a separate WinUSB device object, and Add Interface::enable_raw_io for Windows platformThere's a bunch of discussion about this on #6 and I think we decided that the right thing to do is turn Add Interface::set_timeout_millisecond for a transferNot sure about this. It's tough because each operating system has its own way of doing timeouts:
Rust futures tend to not implement their own timeout, and instead you race the future with a timer and cancel the future if the timer completes first. For cases where you're using Make several assert_eq to debug_assert_eq on some key bulk-in pathsSeems fine, but any particular motivation for this? Update HubHandle::get_node_connection_info, for getting a more precise connection speed (Fix the issue that super speed was mis-reported as high speed).This looks good, though you can probably drop the Windows version check. I haven't tested |
Yes, I attempted to commit them one by one, they just showed up inside one PR. I will try learning to split (it may take some time though) and only commit the necessary parts.
This way indeed seems better in most cases. But apears that it could fail in certain cases, where e.g
Thanks for making me clear.
It sounds great to enable
Yes, I didn't realize the fact that the timeout can be implemented on futures. As a matter of fact, what my use case really needs is synchronously reading BULK-IN endpoint, since the reading thread is time crucial and I assume the execution of
This is because I assume
Yes, it makes sense that not using older Windows. |
Your commits are actually split pretty well; they should just be on separate branches so they can be submitted as separate PRs. Look at
We find the usbccgp parent device object, which represents the whole USB device, and look only at the child device objects under that parent, which represent interfaces or interface groups of that device. See here.
There is some overhead in making separate
I highly doubt a predictable branch would have a measurable impact when profiling, compared to the overhead of system calls. |
Sorry, current APIs are beautify, and I found it difficult to just modify the whole-device WinUSB case while leaving current APIs unchanged and keeping compatibility with other ways of driver installation. What I finally made today looks like a mess with redundancy, so I feel I have to give up its updating. |
Device::claim_associated_interface
for the composite device claiming an associated interface on Windows platform.Following your guidelines,
WinUsb_GetAssociatedInterface
is used for composite device claiming non-default interfaces, with the following two assumptions that work for my test device ( I'm not sure if it is the general rule)0
is the default interface used in WinUSBWinUsb_Initialize
Add
Interface::enable_raw_io
for Windows platform, which may be useful in certain casesAdd
Interface::set_timeout_millisecond
for a transferMake several
assert_eq
todebug_assert_eq
on some key bulk-in pathsUpdate
HubHandle::get_node_connection_info
, for getting a more precise connection speed (Fix the issue that super speed was mis-reported as high speed).These additions can work but look to be ugly APIs and please just reallocate these snippets in a correct way if needed.