This adds the WebUSB implementation as per https://wicg.github.io/webusb/, using one in-endpoint and one out-endpoint as well as an example for the RP2040 to illustrate this capability.
6 lines
125 B
Rust
6 lines
125 B
Rust
//! Implementations of well-known USB classes.
|
|
pub mod cdc_acm;
|
|
pub mod cdc_ncm;
|
|
pub mod hid;
|
|
pub mod midi;
|
|
pub mod web_usb;
|