Searching on internet i think that i've to do something like this:
void CALLBACK_HID_Device_ProcessHIDReport (
USB_ClassInfo_HID_Device_t *const HIDInterfaceInfo,
const uint8_t ReportID,
const uint8_t ReportType,
const void * ReportData,
const uint16_t ReportSize
)
{
uint8_t* Data = (uint8_t*)ReportData;
}
but how i can manage the "Data" variable in the arduino sketches? :helpsmilie: