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_ProcessControlPacket(USB_ClassInfo_HID_t
* HIDInterfaceInfo
)
38 if (!(Endpoint_IsSETUPReceived()))
41 if (USB_ControlRequest
.wIndex
!= HIDInterfaceInfo
->InterfaceNumber
)
44 switch (USB_ControlRequest
.bRequest
)
47 if (USB_ControlRequest
.bmRequestType
== (REQDIR_DEVICETOHOST
| REQTYPE_CLASS
| REQREC_INTERFACE
))
49 Endpoint_ClearSETUP();
51 uint8_t ReportINData
[HIDInterfaceInfo
->ReportINBufferSize
];
52 uint16_t ReportINSize
;
53 uint8_t ReportID
= (USB_ControlRequest
.wValue
& 0xFF);
55 memset(ReportINData
, 0, sizeof(ReportINData
));
57 ReportINSize
= CALLBACK_HID_Device_CreateHIDReport(HIDInterfaceInfo
, &ReportID
, ReportINData
);
59 Endpoint_Write_Control_Stream_LE(ReportINData
, 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
->UsingReportProtocol
);
88 while (!(Endpoint_IsOUTReceived()));
94 if (USB_ControlRequest
.bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
))
96 Endpoint_ClearSETUP();
98 HIDInterfaceInfo
->UsingReportProtocol
= (USB_ControlRequest
.wValue
!= 0x0000);
100 while (!(Endpoint_IsINReady()));
106 if (USB_ControlRequest
.bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
))
108 Endpoint_ClearSETUP();
110 HIDInterfaceInfo
->IdleCount
= ((USB_ControlRequest
.wValue
>> 8) << 2);
112 while (!(Endpoint_IsINReady()));
118 if (USB_ControlRequest
.bmRequestType
== (REQDIR_DEVICETOHOST
| REQTYPE_CLASS
| REQREC_INTERFACE
))
120 Endpoint_ClearSETUP();
122 Endpoint_Write_Byte(HIDInterfaceInfo
->IdleCount
>> 2);
125 while (!(Endpoint_IsOUTReceived()));
133 bool HID_Device_ConfigureEndpoints(USB_ClassInfo_HID_t
* HIDInterfaceInfo
)
135 HIDInterfaceInfo
->UsingReportProtocol
= true;
137 if (!(Endpoint_ConfigureEndpoint(HIDInterfaceInfo
->ReportINEndpointNumber
, EP_TYPE_INTERRUPT
,
138 ENDPOINT_DIR_IN
, HIDInterfaceInfo
->ReportINEndpointSize
, ENDPOINT_BANK_SINGLE
)))
146 void HID_Device_USBTask(USB_ClassInfo_HID_t
* HIDInterfaceInfo
)
148 if (!(USB_IsConnected
))
151 Endpoint_SelectEndpoint(HIDInterfaceInfo
->ReportINEndpointNumber
);
153 if (Endpoint_IsReadWriteAllowed() &&
154 !(HIDInterfaceInfo
->IdleCount
&& HIDInterfaceInfo
->IdleMSRemaining
))
156 if (HIDInterfaceInfo
->IdleCount
&& !(HIDInterfaceInfo
->IdleMSRemaining
))
157 HIDInterfaceInfo
->IdleMSRemaining
= HIDInterfaceInfo
->IdleCount
;
159 uint8_t ReportINData
[HIDInterfaceInfo
->ReportINBufferSize
];
160 uint16_t ReportINSize
;
161 uint8_t ReportID
= 0;
163 memset(ReportINData
, 0, sizeof(ReportINData
));
165 ReportINSize
= CALLBACK_HID_Device_CreateHIDReport(HIDInterfaceInfo
, &ReportID
, ReportINData
);
170 Endpoint_Write_Stream_LE(&ReportID
, sizeof(ReportID
), NO_STREAM_CALLBACK
);
172 Endpoint_Write_Stream_LE(ReportINData
, ReportINSize
, NO_STREAM_CALLBACK
);