forked from mfulz_github/qmk_firmware
Fixed broken HID_REQ_GetReport request handler in the Low Level GenericHID demo.
This commit is contained in:
parent
82fa9149d7
commit
c879887dce
|
@ -139,7 +139,7 @@ void EVENT_USB_Device_ControlRequest(void)
|
||||||
|
|
||||||
/* Read the report data from the control endpoint */
|
/* Read the report data from the control endpoint */
|
||||||
Endpoint_Read_Control_Stream_LE(&GenericData, sizeof(GenericData));
|
Endpoint_Read_Control_Stream_LE(&GenericData, sizeof(GenericData));
|
||||||
Endpoint_ClearOUT();
|
Endpoint_ClearIN();
|
||||||
|
|
||||||
ProcessGenericHIDReport(GenericData);
|
ProcessGenericHIDReport(GenericData);
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,8 +48,8 @@
|
||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __LEDS_BENITO_H__
|
#ifndef __LEDS_UNO_H__
|
||||||
#define __LEDS_BENITO_H__
|
#define __LEDS_UNO_H__
|
||||||
|
|
||||||
/* Includes: */
|
/* Includes: */
|
||||||
#include <avr/io.h>
|
#include <avr/io.h>
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
* - Library Applications:
|
* - Library Applications:
|
||||||
* - Fixed Benito project discarding incoming data from the USB virtual serial port when the USART is busy
|
* - Fixed Benito project discarding incoming data from the USB virtual serial port when the USART is busy
|
||||||
* - Fixed broken DFU bootloader, added XPLAIN support for bootloader start when XCK jumpered to ground
|
* - Fixed broken DFU bootloader, added XPLAIN support for bootloader start when XCK jumpered to ground
|
||||||
|
* - Fixed broken HID_REQ_GetReport request handler in the Low Level GenericHID demo
|
||||||
*
|
*
|
||||||
* \section Sec_ChangeLog101122 Version 101122
|
* \section Sec_ChangeLog101122 Version 101122
|
||||||
* <b>New:</b>
|
* <b>New:</b>
|
||||||
|
|
Loading…
Reference in New Issue