Hello,I'm trying to change the HID report to x and y have more accuracy (If i', not wrong, windows drivers accept this without any proprietary driver).My HID mouse report in usbd_hid.c is:__ALIGN_BEGIN static uint8_t HID_MOUSE_ReportDesc[HID_MOUSE_RE...
Hello,I'm trying to add 5 more buttons in a mouse, to do this, with the Device configuration tool I have enabled the usb as HID (no Custom HID).To add the buttons i changed the HID_MOUSE_ReportDesc:0x05, 0x01, // Usage Page (Generic Desktop Ct...
Hello,Thanks for the answered, you're agree.Now with this change i don't have the descriptor problem, but the PC didn't recognize my 'mouse'. This descriptor is compatible with HID? Or with this change i will have to develop a driver for windows?Than...
HelloThanks for the answer, this means, that if i change the hid report, this didn't work if i don't have a custom driver? A solution will be add this extra buttons as a keyboard instead of mouse buttons?Thanks.