bool USB_RemoteWakeupEnabled;\r
bool USB_CurrentlySelfPowered;\r
\r
-void USB_Device_ProcessControlPacket(void)\r
+void USB_Device_ProcessControlRequest(void)\r
{\r
bool RequestHandled = false;\r
uint8_t* RequestHeader = (uint8_t*)&USB_ControlRequest;\r
}\r
\r
if (!(RequestHandled))\r
- EVENT_USB_UnhandledControlPacket();\r
+ EVENT_USB_Device_UnhandledControlRequest();\r
\r
if (Endpoint_IsSETUPReceived())\r
{\r
\r
static void USB_Device_SetConfiguration(void)\r
{\r
- bool AlreadyConfigured = (USB_ConfigurationNumber != 0);\r
-\r
#if defined(FIXED_NUM_CONFIGURATIONS)\r
if ((uint8_t)USB_ControlRequest.wValue > FIXED_NUM_CONFIGURATIONS)\r
return;\r
Endpoint_ClearIN();\r
\r
if (USB_ConfigurationNumber)\r
- {\r
- USB_DeviceState = DEVICE_STATE_Configured;\r
-\r
- if (!(AlreadyConfigured))\r
- EVENT_USB_DeviceEnumerationComplete();\r
- }\r
+ USB_DeviceState = DEVICE_STATE_Configured;\r
else\r
- {\r
- USB_DeviceState = DEVICE_STATE_Addressed;\r
- }\r
+ USB_DeviceState = DEVICE_STATE_Addressed;\r
\r
- EVENT_USB_ConfigurationChanged();\r
+ EVENT_USB_Device_ConfigurationChanged();\r
}\r
\r
void USB_Device_GetConfiguration(void)\r