usbd-hid icon indicating copy to clipboard operation
usbd-hid copied to clipboard

Results 13 usbd-hid issues
Sort by recently updated
recently updated
newest added

…ontrolReport It was already there for KeyboardReport where documentation is added to the function

Useful to know if a report is different from an other one

The implementation of the `gen_hid_descriptor` macro seems lack `logical_max` field, is that right? How can i do to add `logical_max` field? code here: https://github.com/twitchyliquid64/usbd-hid/blob/master/macros/src/spec.rs#L129

Hello, I'm testing this crate for usbd usages. Everything is fine when I create less than 3 `HIDClass`, but if I create 4 `HIDClass`, the usb device just doesn't work:...

There seems to be some compatibility issue with Win10 and the generated descriptor(s). ```Rust #[gen_hid_descriptor( (collection = APPLICATION, usage = 0x01, usage_page = 0xff00) = { #[item_settings data] data=input; }...

Hi Guys I would like to write a small application using SystemControlReport's to put a PC to sleep or wake it up. Is there any example code that shows how...

Hi, currently the `KeyboardReport` only supports reporting up to 6 key presses, not including modifier keys. I'd like to request that it be updated to support an arbitrary number of...

I use the `gen_hid_descriptor` macro like this: ``` #[gen_hid_descriptor( (collection = APPLICATION, usage_page = 0xaaaa, usage = 0xaa) = { (usage = 0xbb,) = { input_buffer = input; }; (usage...

Hi, I'm building a keyboard and am currently using this crate. I'm currently using it on MacOS. I noticed I'm receiving phantom key inputs when I hold down 4 or...