Skip to content

Commit

Permalink
Remove broken links to 3rd party site (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
dlkj authored Dec 29, 2023
1 parent 17a983b commit 7afa22d
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "usbd-human-interface-device"
version = "0.4.4"
version = "0.4.5"
edition = "2021"
description = "Batteries included embedded USB HID library for usb-device. Includes concrete Keyboard (boot and NKRO), Mouse, Joystick and Consumer Control implementations as well as support for building your own HID classes."
keywords = ["hid", "usb-device", "usb", "keyboard", "mouse"]
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,3 @@ This library was inspired by existing rust USB libraries and the following sourc
- [USB in a NutShell](https://www.beyondlogic.org/usbnutshell/usb1.shtml)
- [Frank Zhao's USB Descriptor and Request Parser](https://eleccelerator.com/usbdescreqparser/)
- [Adafruit](https://learn.adafruit.com/custom-hid-devices-in-circuitpython/n-key-rollover-nkro-hid-device)
- [USBlyzer](http://www.usblyzer.com/)
2 changes: 1 addition & 1 deletion examples/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion examples/src/bin/keyboard_custom.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ fn main() -> ! {
));

// Descriptor based on the Logitech Gaming Keyboard
// http://www.usblyzer.com/reports/usb-properties/usb-keyboard.html
#[rustfmt::skip]
pub const LOGITECH_GAMING_KEYBOARD_REPORT_DESCRIPTOR: &[u8] = &[
0x05, 0x01, // Usage Page (Generic Desktop)
Expand Down
3 changes: 1 addition & 2 deletions src/device/consumer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ pub struct MultipleConsumerReport {
#[allow(clippy::doc_markdown)]
///Fixed functionality consumer control report descriptor
///
/// Based on [Logitech Gaming Keyboard](http://www.usblyzer.com/reports/usb-properties/usb-keyboard.html)
/// dumped by [USBlyzer](http://www.usblyzer.com/)
/// Based on [Logitech Gaming Keyboard]
///
/// Single bit packed `u8` report
/// * Bit 0 - Scan Next Track
Expand Down

0 comments on commit 7afa22d

Please sign in to comment.