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
;
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_Write_Control_Stream_LE(HIDInterfaceInfo
->Config
.PrevReportINBuffer
, ReportINSize
);
65 if (USB_ControlRequest
.bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
))
67 Endpoint_ClearSETUP();
69 uint16_t ReportOUTSize
= USB_ControlRequest
.wLength
;
70 uint8_t ReportOUTData
[ReportOUTSize
];
71 uint8_t ReportID
= (USB_ControlRequest
.wValue
& 0xFF);
73 Endpoint_Read_Control_Stream_LE(ReportOUTData
, ReportOUTSize
);
76 CALLBACK_HID_Device_ProcessHIDReport(HIDInterfaceInfo
, ReportID
, ReportOUTData
, ReportOUTSize
);
81 if (USB_ControlRequest
.bmRequestType
== (REQDIR_DEVICETOHOST
| REQTYPE_CLASS
| REQREC_INTERFACE
))
83 Endpoint_ClearSETUP();
85 Endpoint_Write_Byte(HIDInterfaceInfo
->State
.UsingReportProtocol
);
88 Endpoint_ClearStatusStage();
93 if (USB_ControlRequest
.bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
))
95 Endpoint_ClearSETUP();
97 HIDInterfaceInfo
->State
.UsingReportProtocol
= (USB_ControlRequest
.wValue
!= 0x0000);
99 Endpoint_ClearStatusStage();
104 if (USB_ControlRequest
.bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
))
106 Endpoint_ClearSETUP();
108 HIDInterfaceInfo
->State
.IdleCount
= ((USB_ControlRequest
.wValue
& 0xFF00) >> 6);
110 Endpoint_ClearStatusStage();
115 if (USB_ControlRequest
.bmRequestType
== (REQDIR_DEVICETOHOST
| REQTYPE_CLASS
| REQREC_INTERFACE
))
117 Endpoint_ClearSETUP();
119 Endpoint_Write_Byte(HIDInterfaceInfo
->State
.IdleCount
>> 2);
122 Endpoint_ClearStatusStage();
129 bool HID_Device_ConfigureEndpoints(USB_ClassInfo_HID_Device_t
* const HIDInterfaceInfo
)
131 memset(&HIDInterfaceInfo
->State
, 0x00, sizeof(HIDInterfaceInfo
->State
));
132 HIDInterfaceInfo
->State
.UsingReportProtocol
= true;
133 HIDInterfaceInfo
->State
.IdleCount
= 500;
135 if (!(Endpoint_ConfigureEndpoint(HIDInterfaceInfo
->Config
.ReportINEndpointNumber
, EP_TYPE_INTERRUPT
,
136 ENDPOINT_DIR_IN
, HIDInterfaceInfo
->Config
.ReportINEndpointSize
, ENDPOINT_BANK_SINGLE
)))
144 void HID_Device_USBTask(USB_ClassInfo_HID_Device_t
* const HIDInterfaceInfo
)
146 if (USB_DeviceState
!= DEVICE_STATE_Configured
)
149 Endpoint_SelectEndpoint(HIDInterfaceInfo
->Config
.ReportINEndpointNumber
);
151 if (Endpoint_IsReadWriteAllowed())
153 uint8_t ReportINData
[HIDInterfaceInfo
->Config
.PrevReportINBufferSize
];
154 uint8_t ReportID
= 0;
155 uint16_t ReportINSize
;
157 memset(ReportINData
, 0, sizeof(ReportINData
));
159 bool ForceSend
= CALLBACK_HID_Device_CreateHIDReport(HIDInterfaceInfo
, &ReportID
, ReportINData
, &ReportINSize
);
161 bool StatesChanged
= (memcmp(ReportINData
, HIDInterfaceInfo
->Config
.PrevReportINBuffer
, ReportINSize
) != 0);
162 bool IdlePeriodElapsed
= (HIDInterfaceInfo
->State
.IdleCount
&& !(HIDInterfaceInfo
->State
.IdleMSRemaining
));
164 memcpy(HIDInterfaceInfo
->Config
.PrevReportINBuffer
, ReportINData
, ReportINSize
);
166 if (ReportINSize
&& (ForceSend
|| StatesChanged
|| IdlePeriodElapsed
))
168 HIDInterfaceInfo
->State
.IdleMSRemaining
= HIDInterfaceInfo
->State
.IdleCount
;
171 Endpoint_Write_Stream_LE(&ReportID
, sizeof(ReportID
), NO_STREAM_CALLBACK
);
173 Endpoint_Write_Stream_LE(ReportINData
, ReportINSize
, NO_STREAM_CALLBACK
);
180 void HID_Device_MillisecondElapsed(USB_ClassInfo_HID_Device_t
* HIDInterfaceInfo
)
182 if (HIDInterfaceInfo
->State
.IdleMSRemaining
)
183 HIDInterfaceInfo
->State
.IdleMSRemaining
--;