-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Start of USB host API #6125
Start of USB host API #6125
Conversation
This allows you to list and explore connected USB devices. It only stubs out the methods to communicate to endpoints. That will come in a follow up once TinyUSB has it. (It's in progress.) Related to micropython#5986
The last build was mostly network failures and one size failure that seems to be unrelated. Please review and I'll likely need to do some tweaks that will lead to another CI run. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't verify the i.MX stuff, though I did look it over. That's what your testing is doing.
Mostly some arg validation stuff. You could make these explicitly called-out TODO's if you don't have time.
Thanks for cleaning up and generalizing the debug UART stuff!
One board is not fitting. |
TinyUSB grew in size:
@jpconstantineu this disables the traceback module on the bluemicro833. It's new so I figured no code uses it. (Could do watchdog as an alternative.) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
This allows you to list and explore connected USB devices. It
only stubs out the methods to communicate to endpoints. That will
come in a follow up once TinyUSB has it. (It's in progress.)
Related to #5986