Search found 2 matches
- Mon Mar 27, 2017 3:39 pm
- Forum: V-USB
- Topic: HID keyboard/mouse combo report ID
- Replies: 1
- Views: 60572
Re: HID keyboard/mouse combo report ID
Ok the problem was that usbSetInterrupt can only send 8 bytes at a time and my keyboard descriptor took up 9 bytes (report ID + modifier + reserved + 6 keycodes). I reduced the number of keycodes to 5 and can now send mouse and keyboard data at the same time! I discovered that endpoint 3 can also be...
- Mon Mar 27, 2017 1:53 pm
- Forum: V-USB
- Topic: HID keyboard/mouse combo report ID
- Replies: 1
- Views: 60572
HID keyboard/mouse combo report ID
I am trying to create a device which acts as a keyboard and mouse at the same time. After some research I've concluded that it should be possible to combine both the mouse and keyboard HID descriptors, and separate them with Report IDs. I've successfully implemented the keyboard and mouse separately...