Replies: 1 comment
-
TinyUSB passes vendor requests to a different C callback, Are you trying to implement WebUSB, or something else? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to make simple project that would respond to
usb out vendor request but unsuccessful, not shure is it
bug or I don't know what to write.
I can get response to class request, but not to vendor request
this works
bmRequestType = usb.util.CTRL_OUT | usb.util.CTRL_TYPE_CLASS | usb.util.CTRL_RECIPIENT_DEVICE
this doesn't work
bmRequestType = usb.util.CTRL_OUT | usb.util.CTRL_TYPE_VENDOR | usb.util.CTRL_RECIPIENT_DEVICE
i don't know what's wrong in control_xfer_cb(), just replaced there
CLASS with VENDOR and it doesn't work
please add more examples for vendor request and/or more
examples for usb
Beta Was this translation helpful? Give feedback.
All reactions