I am trying to log the USB activity for my stm32 which is interfaced as a keyboard. I tried installing STM32 USB HID demonstrator but it is not supported for Window 10.I want to log the usb activity in a log file to analyse the data received on host ...
I am using STM32f3 discovery kit with STM32 cube ide to interface the kit as USB HID mouse. I am trying to change the resolution of the mouse. The default resolution given in the Report descriptor is 400 dpi . (0x15, 0x81, // LOGICAL_MINIMUM (-...
The endian order is correct. uint8_t mousebuffer[4];mousebuffer[0]=0; // Left and right click (0: None, 1: Left click, 2: Right Click mousebuffer[1]=0; // X movement 0:, not moving, +ve : Right movement ,-ve :left movement mousebuffer[2]=0; // Y move...