diff options
| author | Dean Camera <dean@fourwalledcubicle.com> | 2010-11-05 05:15:20 +0000 |
|---|---|---|
| committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-11-05 05:15:20 +0000 |
| commit | fb76acb0844a2528c32610455a8c7cd5266f3027 (patch) | |
| tree | 24ea91f9555876585b311fff33fa271468b9e081 /Demos/Device/Incomplete/Sideshow | |
| parent | 99a9e415efd1e27d902427ccd1aa6e4a9f9d4d05 (diff) | |
| download | lufa-fb76acb0844a2528c32610455a8c7cd5266f3027.tar.gz lufa-fb76acb0844a2528c32610455a8c7cd5266f3027.tar.bz2 lufa-fb76acb0844a2528c32610455a8c7cd5266f3027.zip | |
Renamed the EVENT_USB_Device_UnhandledControlRequest() event to EVENT_USB_Device_ControlRequest() as it is now fired before the library request handlers, not afterwards.
Diffstat (limited to 'Demos/Device/Incomplete/Sideshow')
| -rw-r--r-- | Demos/Device/Incomplete/Sideshow/Sideshow.c | 2 | ||||
| -rw-r--r-- | Demos/Device/Incomplete/Sideshow/Sideshow.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Demos/Device/Incomplete/Sideshow/Sideshow.c b/Demos/Device/Incomplete/Sideshow/Sideshow.c index 670299b1e..8115cdbda 100644 --- a/Demos/Device/Incomplete/Sideshow/Sideshow.c +++ b/Demos/Device/Incomplete/Sideshow/Sideshow.c @@ -107,7 +107,7 @@ void EVENT_USB_Device_ConfigurationChanged(void) LEDs_SetAllLEDs(ConfigSuccess ? LEDMASK_USB_READY : LEDMASK_USB_ERROR); } -void EVENT_USB_Device_UnhandledControlRequest(void) +void EVENT_USB_Device_ControlRequest(void) { switch (USB_ControlRequest.bRequest) { diff --git a/Demos/Device/Incomplete/Sideshow/Sideshow.h b/Demos/Device/Incomplete/Sideshow/Sideshow.h index af8abe69f..62b89047f 100644 --- a/Demos/Device/Incomplete/Sideshow/Sideshow.h +++ b/Demos/Device/Incomplete/Sideshow/Sideshow.h @@ -73,7 +73,7 @@ void EVENT_USB_Device_Connect(void); void EVENT_USB_Device_Disconnect(void); void EVENT_USB_Device_ConfigurationChanged(void); - void EVENT_USB_Device_UnhandledControlRequest(void); + void EVENT_USB_Device_ControlRequest(void); #endif |
