imxrt-rs / imxrt-usbd

USB device driver for i.MX RT processors
Apache License 2.0
7 stars 9 forks source link

Pass the usb-device test suite #6

Closed mciantyre closed 3 years ago

mciantyre commented 3 years ago

The usb-device crate provides a test class, and a host-side test suite, for evaluating a USB device implementation. Make sure we can pass the tests.

mciantyre commented 3 years ago

Tests pass. See the contributing guide for how to execute the test suite.

Bulk read/write benchmark results below.

running 9 tests
test string_descriptors ... ok
test control_request ... ok
test control_data ... ok
test control_data_static ... ok
test control_error ... ok
test bulk_loopback ... ok
test interrupt_loopback ... ok
test bench_bulk_write ... ok
    16 transfers of 65536 bytes in 1.266s -> 6.628Mbit/s
test bench_bulk_read ... ok
    16 transfers of 65536 bytes in 1.176s -> 7.135Mbit/s
0 failed, 9 succeeded

ALL TESTS PASSED!