-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
nrf5x USB Compliance Verification Test suite #1058
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
correctly responded to TD 9.13 Set Configuration Test
remove TUSB_DESC_CONFIG_ATT_REMOTE_WAKEUP attribute from non-hid examples
add more log, pass more complaint test
- limit out xact dma to prevent usbd overflow in certain situation after stalled - drained already acked data when stalling an OUT endpoint
sandeepmistry
added a commit
to ArmDeveloperEcosystem/microphone-library-for-pico
that referenced
this pull request
Sep 23, 2021
sandeepmistry
added a commit
to ArmDeveloperEcosystem/microphone-library-for-pico
that referenced
this pull request
Sep 23, 2021
sandeepmistry
added a commit
to ArmDeveloperEcosystem/microphone-library-for-pico
that referenced
this pull request
Sep 24, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Describe the PR
Initial PR to get TinyUSB passed the USB complaince verification test suite (USBCV). The test suite include many corner cases which require changes to both usbd and dcd to pass. This PRs include the update to get nrf52840 ( board feather_nrf52840_express) to pass following:
Chapter9 test requires an new dcd API dcd_edpt_close_all() to switch between configuration dynamically (mentioned in #1050 and #167). This API is only implemented in nRF5x by this PR, it is rare to see and generally ok to leave empty if the device support only 1 active configuration.
This PR makes msc driver more robust (to response to all weird commands) and fix several hidden issue with nrf5x dcd
More PRs to get all other MCU passed test suite will follow up in the future. Check out #1059 for compliance status of all ports.