3 Copyright (C) Dean Camera, 2009.
5 dean [at] fourwalledcubicle [dot] com
6 www.fourwalledcubicle.com
10 Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)
12 Permission to use, copy, modify, and distribute this software
13 and its documentation for any purpose and without fee is hereby
14 granted, provided that the above copyright notice appear in all
15 copies and that both that the copyright notice and this
16 permission notice and warranty disclaimer appear in supporting
17 documentation, and that the name of the author not be used in
18 advertising or publicity pertaining to distribution of the
19 software without specific, written prior permission.
21 The author disclaim all warranties with regard to this
22 software, including all implied warranties of merchantability
23 and fitness. In no event shall the author be liable for any
24 special, indirect or consequential damages or any damages
25 whatsoever resulting from loss of use, data or profits, whether
26 in an action of contract, negligence or other tortious action,
27 arising out of or in connection with the use or performance of
31 #include "../../HighLevel/USBMode.h"
32 #if defined(USB_CAN_BE_DEVICE)
36 void HID_Device_ProcessControlRequest(USB_ClassInfo_HID_Device_t
* const HIDInterfaceInfo
)
38 if (!(Endpoint_IsSETUPReceived()))
41 if (USB_ControlRequest
.wIndex
!= HIDInterfaceInfo
->Config
.InterfaceNumber
)
44 switch (USB_ControlRequest
.bRequest
)
47 if (USB_ControlRequest
.bmRequestType
== (REQDIR_DEVICETOHOST
| REQTYPE_CLASS
| REQREC_INTERFACE
))
49 Endpoint_ClearSETUP();
51 uint16_t ReportINSize
= 0;
52 uint8_t ReportID
= (USB_ControlRequest
.wValue
& 0xFF);
54 memset(HIDInterfaceInfo
->Config
.PrevReportINBuffer
, 0, HIDInterfaceInfo
->Config
.PrevReportINBufferSize
);
56 CALLBACK_HID_Device_CreateHIDReport(HIDInterfaceInfo
, &ReportID
,
57 HIDInterfaceInfo
->Config
.PrevReportINBuffer
, &ReportINSize
);
59 Endpoint_SelectEndpoint(ENDPOINT_CONTROLEP
);
60 Endpoint_Write_Control_Stream_LE(HIDInterfaceInfo
->Config
.PrevReportINBuffer
, ReportINSize
);
66 if (USB_ControlRequest
.bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
))
68 Endpoint_ClearSETUP();
70 uint16_t ReportOUTSize
= USB_ControlRequest
.wLength
;
71 uint8_t ReportOUTData
[ReportOUTSize
];
72 uint8_t ReportID
= (USB_ControlRequest
.wValue
& 0xFF);
74 Endpoint_Read_Control_Stream_LE(ReportOUTData
, ReportOUTSize
);
77 CALLBACK_HID_Device_ProcessHIDReport(HIDInterfaceInfo
, ReportID
, ReportOUTData
, ReportOUTSize
);
82 if (USB_ControlRequest
.bmRequestType
== (REQDIR_DEVICETOHOST
| REQTYPE_CLASS
| REQREC_INTERFACE
))
84 Endpoint_ClearSETUP();
86 Endpoint_Write_Byte(HIDInterfaceInfo
->State
.UsingReportProtocol
);
89 Endpoint_ClearStatusStage();
94 if (USB_ControlRequest
.bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
))
96 Endpoint_ClearSETUP();
98 HIDInterfaceInfo
->State
.UsingReportProtocol
= ((USB_ControlRequest
.wValue
& 0xFF) != 0x00);
100 Endpoint_ClearStatusStage();
105 if (USB_ControlRequest
.bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
))
107 Endpoint_ClearSETUP();
109 HIDInterfaceInfo
->State
.IdleCount
= ((USB_ControlRequest
.wValue
& 0xFF00) >> 6);
111 Endpoint_ClearStatusStage();
116 if (USB_ControlRequest
.bmRequestType
== (REQDIR_DEVICETOHOST
| REQTYPE_CLASS
| REQREC_INTERFACE
))
118 Endpoint_ClearSETUP();
120 Endpoint_Write_Byte(HIDInterfaceInfo
->State
.IdleCount
>> 2);
123 Endpoint_ClearStatusStage();
130 bool HID_Device_ConfigureEndpoints(USB_ClassInfo_HID_Device_t
* const HIDInterfaceInfo
)
132 memset(&HIDInterfaceInfo
->State
, 0x00, sizeof(HIDInterfaceInfo
->State
));
133 HIDInterfaceInfo
->State
.UsingReportProtocol
= true;
134 HIDInterfaceInfo
->State
.IdleCount
= 500;
136 if (!(Endpoint_ConfigureEndpoint(HIDInterfaceInfo
->Config
.ReportINEndpointNumber
, EP_TYPE_INTERRUPT
,
137 ENDPOINT_DIR_IN
, HIDInterfaceInfo
->Config
.ReportINEndpointSize
,
138 HIDInterfaceInfo
->Config
.ReportINEndpointDoubleBank ? ENDPOINT_BANK_DOUBLE
: ENDPOINT_BANK_SINGLE
)))
146 void HID_Device_USBTask(USB_ClassInfo_HID_Device_t
* const HIDInterfaceInfo
)
148 if (USB_DeviceState
!= DEVICE_STATE_Configured
)
151 Endpoint_SelectEndpoint(HIDInterfaceInfo
->Config
.ReportINEndpointNumber
);
153 if (Endpoint_IsReadWriteAllowed())
155 uint8_t ReportINData
[HIDInterfaceInfo
->Config
.PrevReportINBufferSize
];
156 uint8_t ReportID
= 0;
157 uint16_t ReportINSize
= 0;
159 memset(ReportINData
, 0, sizeof(ReportINData
));
161 bool ForceSend
= CALLBACK_HID_Device_CreateHIDReport(HIDInterfaceInfo
, &ReportID
, ReportINData
, &ReportINSize
);
162 bool StatesChanged
= false;
163 bool IdlePeriodElapsed
= (HIDInterfaceInfo
->State
.IdleCount
&& !(HIDInterfaceInfo
->State
.IdleMSRemaining
));
165 if (HIDInterfaceInfo
->Config
.PrevReportINBuffer
!= NULL
)
167 StatesChanged
= (memcmp(ReportINData
, HIDInterfaceInfo
->Config
.PrevReportINBuffer
, ReportINSize
) != 0);
168 memcpy(HIDInterfaceInfo
->Config
.PrevReportINBuffer
, ReportINData
, ReportINSize
);
171 if (ReportINSize
&& (ForceSend
|| StatesChanged
|| IdlePeriodElapsed
))
173 HIDInterfaceInfo
->State
.IdleMSRemaining
= HIDInterfaceInfo
->State
.IdleCount
;
175 Endpoint_SelectEndpoint(HIDInterfaceInfo
->Config
.ReportINEndpointNumber
);
178 Endpoint_Write_Byte(ReportID
);
180 Endpoint_Write_Stream_LE(ReportINData
, ReportINSize
, NO_STREAM_CALLBACK
);
187 void HID_Device_MillisecondElapsed(USB_ClassInfo_HID_Device_t
* HIDInterfaceInfo
)
189 if (HIDInterfaceInfo
->State
.IdleMSRemaining
)
190 HIDInterfaceInfo
->State
.IdleMSRemaining
--;