Skip to content

Commit

Permalink
Version 0.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
surban committed Dec 6, 2024
1 parent f94674f commit 10e8b87
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog],
and this project adheres to [Semantic Versioning].

## 0.7.5 - 2024-12-06
### Added
- Printer gadget support by John Whittington
- UAC2 gadget support by John Whittington
- UVC gadget support by John Whittington


## 0.7.4 - 2024-11-29
### Added
- MIDI gadget support by John Whittington
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "Apache-2.0"
repository = "https://github.com/surban/usb-gadget"
authors = ["Sebastian Urban <[email protected]>", "usb-gadget authors"]
rust-version = "1.73"
version = "0.7.4"
version = "0.7.5"
edition = "2021"

[features]
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ The following pre-defined USB functions, implemented by kernel drivers, are avai
* generic
* human interface device (HID)
* mass-storage device (MSD)
* printer device
* musical instrument digital interface (MIDI)
* audio device (UAC2)
* video device (UVC)
Expand Down Expand Up @@ -61,6 +62,7 @@ The following Linux kernel configuration options should be enabled for full func
* `CONFIG_USB_CONFIGFS_MASS_STORAGE`
* `CONFIG_USB_CONFIGFS_F_FS`
* `CONFIG_USB_CONFIGFS_F_HID`
* `CONFIG_USB_CONFIGFS_F_PRINTER`
* `CONFIG_USB_CONFIGFS_F_MIDI`
* `CONFIG_USB_CONFIGFS_F_UAC2`
* `CONFIG_USB_CONFIGFS_F_UVC`
Expand Down
2 changes: 1 addition & 1 deletion src/function/printer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//! The Linux kernel configuration option `CONFIG_USB_CONFIGFS_F_PRINTER` must be enabled.
//!
//! A device file at `/dev/g_printerN` will be created for each instance of the function, where N
//! instance number. See 'examples/printer.rs' for an example.
//! instance number. See `examples/printer.rs` for an example.
use bitflags::bitflags;
use std::{ffi::OsString, io::Result};
Expand Down

0 comments on commit 10e8b87

Please sign in to comment.