esp-idf/tools/test_apps/peripherals/usb
Tomas Rezucha 3abeee00d0 usb_host: Pin test task to core 0
When we try to uninstall usb_host library on multi-core SoC (ESP32S3)
the USB interrupt can be triggered even after it was disabled on one CPU
2022-03-21 18:34:25 +01:00
..
main ci: Add USB Host CDC and MSC pytests to pipeline 2022-03-21 18:34:24 +01:00
CMakeLists.txt USB: added MSC Host Driver with VFS support 2021-12-20 12:39:45 +01:00
pytest_usb_host.py ci: Add USB Host CDC and MSC pytests to pipeline 2022-03-21 18:34:24 +01:00
README.md USB: added MSC Host Driver with VFS support 2021-12-20 12:39:45 +01:00
sdkconfig.defaults usb_host: Pin test task to core 0 2022-03-21 18:34:25 +01:00

Supported Targets ESP32-S2 ESP32-S3

USB Host Class driver test project

Main purpose of this application is to test the USB Host Class drivers.

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.

MSC driver

Basic functionality such as MSC device install/uninstall, file operatons, raw access to MSC device and sudden disconnect is tested.

Hardware Required

This test requires two ESP32-S2/S3 boards with a interconnected USB perpherals, one acting as host running MSC host driver and another MSC device driver (tinyusb).