Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions embassy-usb/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased - ReleaseDate

- Bump usbd-hid from 0.9.0 to 0.10.0
- Add USB Mass Storage Class (MSC) implementation (Bulk-Only Transport + SCSI transparent commands)

## 0.6.0 - 2026-03-10

Expand Down
1 change: 1 addition & 0 deletions embassy-usb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Async USB device stack for embedded devices in Rust.
- Ethernet (CDC NCM)
- Human Interface Devices (HID)
- MIDI
- Mass Storage (MSC)

## Adding support for new hardware

Expand Down
1 change: 1 addition & 0 deletions embassy-usb/src/class/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ pub mod cmsis_dap_v2;
pub mod dfu;
pub mod hid;
pub mod midi;
pub mod msc;
pub mod uac1;
pub mod web_usb;
Loading