-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Move device pytest to device/esp_tinyusb
- Loading branch information
1 parent
b97ab39
commit 2cb87e9
Showing
5 changed files
with
26 additions
and
5 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,15 @@ | ||
| Supported Targets | ESP32-S2 | ESP32-S3 | | ||
| ----------------- | -------- | -------- | | ||
|
||
# USB: CDC Class test application | ||
# USB: CDC Class test application | ||
|
||
## CDC-ACM driver | ||
|
||
It tests basic functionality of the driver like open/close/read/write operations, | ||
advanced features like CDC control request, multi-threaded or multi-device access, | ||
as well as reaction to sudden disconnection and other error states. | ||
|
||
### Hardware Required | ||
|
||
This test expects that TinyUSB dual CDC device with VID = 0x303A and PID = 0x4002 | ||
is connected to the USB host. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,14 @@ | ||
| Supported Targets | ESP32-S2 | ESP32-S3 | | ||
| ----------------- | -------- | -------- | | ||
|
||
# USB: CDC Class test application | ||
# USB: CDC Class test application | ||
|
||
## MSC driver | ||
|
||
Basic functionality such as MSC device install/uninstall, file operations, | ||
raw access to MSC device and sudden disconnect is tested. | ||
|
||
### Hardware Required | ||
|
||
This test requires two ESP32-S2/S3 boards with a interconnected USB peripherals, | ||
one acting as host running MSC host driver and another MSC device driver (tinyusb). |