-uint16_t CALLBACK_HID_Device_CreateHIDReport(USB_ClassInfo_HID_Device_t* HIDInterfaceInfo, uint8_t* ReportID, void* ReportData)\r
+uint16_t CALLBACK_HID_Device_CreateHIDReport(USB_ClassInfo_HID_Device_t* const HIDInterfaceInfo, uint8_t* const ReportID, void* ReportData)\r
{\r
static bool IsKeyReleaseReport;\r
static bool IsNewlineReport;\r
\r
BitBuffer_t* Buffer = NULL;\r
USB_KeyboardReport_Data_t* KeyboardReport = (USB_KeyboardReport_Data_t*)ReportData;\r
{\r
static bool IsKeyReleaseReport;\r
static bool IsNewlineReport;\r
\r
BitBuffer_t* Buffer = NULL;\r
USB_KeyboardReport_Data_t* KeyboardReport = (USB_KeyboardReport_Data_t*)ReportData;\r
/* Key reports must be interleaved with 0 Key Code reports to release the keys, or repeated keys will be ignored */\r
IsKeyReleaseReport = !IsKeyReleaseReport; \r
\r
/* Key reports must be interleaved with 0 Key Code reports to release the keys, or repeated keys will be ignored */\r
IsKeyReleaseReport = !IsKeyReleaseReport; \r
\r
* \param[in] ReportData Pointer to the report buffer where the received report is stored\r
* \param[in] ReportSize Size in bytes of the report received from the host\r
*/\r
* \param[in] ReportData Pointer to the report buffer where the received report is stored\r
* \param[in] ReportSize Size in bytes of the report received from the host\r
*/\r
-void CALLBACK_HID_Device_ProcessHIDReport(USB_ClassInfo_HID_Device_t* HIDInterfaceInfo, uint8_t ReportID,\r
- void* ReportData, uint16_t ReportSize)\r
+void CALLBACK_HID_Device_ProcessHIDReport(USB_ClassInfo_HID_Device_t* const HIDInterfaceInfo, const uint8_t ReportID,\r
+ const void* ReportData, const uint16_t ReportSize)\r