Resolved! How to send USB HID Reports without guessing the HAL_Delay()?
I want to send USB HID Reports as fast as the MCU or the USB protocol allows. In order to send an USB HID Report on an STM32F103 I'm doing something like: USBD_HID_SendReport(&hUsbDeviceFS, (u8*)&report,sizeof(report)); HAL_Delay(some_delay); or even...