forked from mfulz_github/qmk_firmware
Fix misspelt event name in the Class driver USBtoSerial demo, preventing correct operation.
This commit is contained in:
parent
3a85962f94
commit
5d4478b3b4
|
@ -137,7 +137,7 @@ void EVENT_USB_Device_ConfigurationChanged(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Event handler for the library USB Unhandled Control Request event. */
|
/** Event handler for the library USB Unhandled Control Request event. */
|
||||||
void EVENT_USB_Device_UnhandledControlPacket(void)
|
void EVENT_USB_Device_UnhandledControlRequest(void)
|
||||||
{
|
{
|
||||||
CDC_Device_ProcessControlRequest(&VirtualSerial_CDC_Interface);
|
CDC_Device_ProcessControlRequest(&VirtualSerial_CDC_Interface);
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,6 +26,9 @@
|
||||||
* - Fixed swapped paremeters in the HID state memory copy call while processing a HID PUSH item in the HID report parser
|
* - Fixed swapped paremeters in the HID state memory copy call while processing a HID PUSH item in the HID report parser
|
||||||
* - Fixed memory corruption HID report parser when too many COLLECTION or PUSH items were processed
|
* - Fixed memory corruption HID report parser when too many COLLECTION or PUSH items were processed
|
||||||
* - Fixed HID report parser not resetting the FEATURE item count when a REPORT ID item is encountered
|
* - Fixed HID report parser not resetting the FEATURE item count when a REPORT ID item is encountered
|
||||||
|
* - Fixed USBtoSerial demos not reading in UDR1 when the USART receives data but the USB interface is not enumerated,
|
||||||
|
* causing continuous USART receive interrupts
|
||||||
|
* - Fixed misspelt event name in the Class driver USBtoSerial demo, preventing correct operation
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* \section Sec_ChangeLog090810 Version 090810
|
* \section Sec_ChangeLog090810 Version 090810
|
||||||
|
|
Loading…
Reference in New Issue