Replies: 1 comment 3 replies
-
I never seen an hardware that handle SET CONFIGURATION, your info is too generic. Could you provide details on your setup, board, mcu, sdk, examples and your compiling code ? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've been debugging a reset problem and tracked it down to the fact that the
SET CONFIGURATION
logic inside TinyUSB does not get called, because the hardware handles the request directly. As a result, post-reset the_usbd_dev.itf2drv
table is invalid and my CDC class accesses (in particularSET LINE CONTROL
) fail.Is there a simple way to handle this within the existing TinyUSB codebase? And in general, what facilities are there for interoperating with hardware-implemented requests?
Beta Was this translation helpful? Give feedback.
All reactions