X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/40db485c7967c584eb9fe855e744ed0dc6fe8bae..ec537fd84d6ad3fd0dfa1b55efa2c2d554c1db48:/Bootloaders/CDC/BootloaderCDC.c?ds=sidebyside diff --git a/Bootloaders/CDC/BootloaderCDC.c b/Bootloaders/CDC/BootloaderCDC.c index 74dd5d293..97a0f1b55 100644 --- a/Bootloaders/CDC/BootloaderCDC.c +++ b/Bootloaders/CDC/BootloaderCDC.c @@ -121,11 +121,11 @@ void EVENT_USB_Device_ConfigurationChanged(void) ENDPOINT_BANK_SINGLE); } -/** Event handler for the USB_UnhandledControlRequest event. This is used to catch standard and class specific - * control requests that are not handled internally by the USB library (including the CDC control commands, - * which are all issued via the control endpoint), so that they can be handled appropriately for the application. +/** Event handler for the USB_ControlRequest event. This is used to catch and process control requests sent to + * the device from the USB host before passing along unhandled control requests to the library for processing + * internally. */ -void EVENT_USB_Device_UnhandledControlRequest(void) +void EVENT_USB_Device_ControlRequest(void) { /* Process CDC specific control requests */ switch (USB_ControlRequest.bRequest) @@ -319,7 +319,7 @@ static void WriteNextResponseByte(const uint8_t Response) } } - /* Write the next byte to the OUT endpoint */ + /* Write the next byte to the IN endpoint */ Endpoint_Write_Byte(Response); }