2009-06-01 13:03:39 +02:00
|
|
|
/*
|
|
|
|
LUFA Library
|
|
|
|
Copyright (C) Dean Camera, 2009.
|
|
|
|
|
|
|
|
dean [at] fourwalledcubicle [dot] com
|
|
|
|
www.fourwalledcubicle.com
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)
|
|
|
|
|
|
|
|
Permission to use, copy, modify, and distribute this software
|
|
|
|
and its documentation for any purpose and without fee is hereby
|
|
|
|
granted, provided that the above copyright notice appear in all
|
|
|
|
copies and that both that the copyright notice and this
|
|
|
|
permission notice and warranty disclaimer appear in supporting
|
|
|
|
documentation, and that the name of the author not be used in
|
|
|
|
advertising or publicity pertaining to distribution of the
|
|
|
|
software without specific, written prior permission.
|
|
|
|
|
|
|
|
The author disclaim all warranties with regard to this
|
|
|
|
software, including all implied warranties of merchantability
|
|
|
|
and fitness. In no event shall the author be liable for any
|
|
|
|
special, indirect or consequential damages or any damages
|
|
|
|
whatsoever resulting from loss of use, data or profits, whether
|
|
|
|
in an action of contract, negligence or other tortious action,
|
|
|
|
arising out of or in connection with the use or performance of
|
|
|
|
this software.
|
|
|
|
*/
|
|
|
|
|
2009-06-14 17:55:13 +02:00
|
|
|
/** \ingroup Group_USBClassHID
|
|
|
|
* @defgroup Group_USBClassHIDDevice HID Class Device Mode Driver
|
2009-06-04 06:02:55 +02:00
|
|
|
*
|
2009-07-14 09:59:34 +02:00
|
|
|
* \section Sec_Dependencies Module Source Dependencies
|
|
|
|
* The following files must be built with any user project that uses this module:
|
|
|
|
* - LUFA/Drivers/USB/Class/Device/HID.c
|
|
|
|
*
|
2009-06-04 06:02:55 +02:00
|
|
|
* \section Module Description
|
2009-06-14 17:55:13 +02:00
|
|
|
* Device Mode USB Class driver framework interface, for the HID USB Class driver.
|
2009-06-04 06:02:55 +02:00
|
|
|
*
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2009-06-14 17:55:13 +02:00
|
|
|
#ifndef _HID_CLASS_DEVICE_H_
|
|
|
|
#define _HID_CLASS_DEVICE_H_
|
2009-06-01 13:03:39 +02:00
|
|
|
|
|
|
|
/* Includes: */
|
|
|
|
#include "../../USB.h"
|
2009-06-14 17:55:13 +02:00
|
|
|
#include "../Common/HID.h"
|
2009-06-01 13:03:39 +02:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2009-06-04 04:55:30 +02:00
|
|
|
/* Enable C linkage for C++ Compilers: */
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2009-06-15 06:38:42 +02:00
|
|
|
/* Public Interface - May be used in end-application: */
|
2009-06-18 12:31:55 +02:00
|
|
|
/* Type Defines: */
|
|
|
|
/** Class state structure. An instance of this structure should be made for each HID interface
|
|
|
|
* within the user application, and passed to each of the HID class driver functions as the
|
|
|
|
* HIDInterfaceInfo parameter. This stores each HID interface's configuration and state information.
|
2009-08-27 09:10:00 +02:00
|
|
|
*
|
2009-11-09 14:15:28 +01:00
|
|
|
* \note Due to technical limitations, the HID device class driver does not utilize a separate OUT
|
2009-08-27 09:10:00 +02:00
|
|
|
* endpoint for host->device communications. Instead, the host->device data (if any) is sent to
|
|
|
|
* the device via the control endpoint.
|
2009-06-18 12:31:55 +02:00
|
|
|
*/
|
|
|
|
typedef struct
|
|
|
|
{
|
2009-06-26 13:43:56 +02:00
|
|
|
const struct
|
|
|
|
{
|
|
|
|
uint8_t InterfaceNumber; /**< Interface number of the HID interface within the device */
|
|
|
|
|
|
|
|
uint8_t ReportINEndpointNumber; /**< Endpoint number of the HID interface's IN report endpoint */
|
2009-07-30 16:35:42 +02:00
|
|
|
uint16_t ReportINEndpointSize; /**< Size in bytes of the HID interface's IN report endpoint */
|
2009-11-06 14:43:18 +01:00
|
|
|
bool ReportINEndpointDoubleBank; /** Indicates if the HID interface's IN report endpoint should use double banking */
|
2009-07-31 05:22:08 +02:00
|
|
|
|
2009-11-03 03:06:13 +01:00
|
|
|
void* PrevReportINBuffer; /**< Pointer to a buffer where the previously created HID input report can be
|
2009-07-31 05:22:08 +02:00
|
|
|
* stored by the driver, for comparison purposes to detect report changes that
|
|
|
|
* must be sent immediately to the host. This should point to a buffer big enough
|
2009-10-26 12:44:36 +01:00
|
|
|
* to hold the largest HID input report sent from the HID interface. If this is set
|
|
|
|
* to NULL, it is up to the user to force transfers when needed in the
|
|
|
|
* \ref CALLBACK_HID_Device_CreateHIDReport() callback function.
|
|
|
|
*
|
|
|
|
* \note Due to the single buffer, the internal driver can only correctly compare
|
|
|
|
* subsequent reports with identical report IDs. In multiple report devices,
|
|
|
|
* this buffer should be set to NULL and the decision to send reports made
|
|
|
|
* by the user application instead.
|
2009-07-31 05:22:08 +02:00
|
|
|
*/
|
2009-11-03 03:06:13 +01:00
|
|
|
uint8_t PrevReportINBufferSize; /**< Size in bytes of the given input report buffer. This is used to create a
|
2009-07-31 05:22:08 +02:00
|
|
|
* second buffer of the same size within the driver so that subsequent reports
|
2009-12-17 11:02:19 +01:00
|
|
|
* can be compared. If the user app is to determine when reports are to be sent
|
|
|
|
* exclusively (i.e. \ref PrevReportINBuffer is NULL) this value is ignored.
|
2009-07-31 05:22:08 +02:00
|
|
|
*/
|
2009-06-26 13:43:56 +02:00
|
|
|
} Config; /**< Config data for the USB class interface within the device. All elements in this section
|
|
|
|
* <b>must</b> be set or the interface will fail to enumerate and operate correctly.
|
|
|
|
*/
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
bool UsingReportProtocol; /**< Indicates if the HID interface is set to Boot or Report protocol mode */
|
2009-11-03 03:06:13 +01:00
|
|
|
uint16_t IdleCount; /**< Report idle period, in milliseconds, set by the host */
|
|
|
|
uint16_t IdleMSRemaining; /**< Total number of milliseconds remaining before the idle period elapsed - this
|
|
|
|
* should be decremented by the user application if non-zero each millisecond */
|
2009-06-26 13:43:56 +02:00
|
|
|
} State; /**< State data for the USB class interface within the device. All elements in this section
|
2009-07-28 01:19:17 +02:00
|
|
|
* are reset to their defaults when the interface is enumerated.
|
2009-06-26 13:43:56 +02:00
|
|
|
*/
|
2009-06-18 12:31:55 +02:00
|
|
|
} USB_ClassInfo_HID_Device_t;
|
|
|
|
|
2009-06-15 06:38:42 +02:00
|
|
|
/* Function Prototypes: */
|
|
|
|
/** Configures the endpoints of a given HID interface, ready for use. This should be linked to the library
|
2009-08-05 08:36:31 +02:00
|
|
|
* \ref EVENT_USB_Device_ConfigurationChanged() event so that the endpoints are configured when the configuration
|
2009-06-15 06:38:42 +02:00
|
|
|
* containing the given HID interface is selected.
|
|
|
|
*
|
2009-10-08 10:46:27 +02:00
|
|
|
* \param[in,out] HIDInterfaceInfo Pointer to a structure containing a HID Class configuration and state
|
2009-06-15 06:38:42 +02:00
|
|
|
*
|
2009-11-09 14:15:28 +01:00
|
|
|
* \return Boolean true if the endpoints were successfully configured, false otherwise
|
2009-06-15 06:38:42 +02:00
|
|
|
*/
|
2009-08-26 09:01:32 +02:00
|
|
|
bool HID_Device_ConfigureEndpoints(USB_ClassInfo_HID_Device_t* HIDInterfaceInfo) ATTR_NON_NULL_PTR_ARG(1);
|
2009-06-15 06:38:42 +02:00
|
|
|
|
2009-11-09 14:15:28 +01:00
|
|
|
/** Processes incoming control requests from the host, that are directed to the given HID class interface. This should be
|
2009-08-05 08:36:31 +02:00
|
|
|
* linked to the library \ref EVENT_USB_Device_UnhandledControlRequest() event.
|
2009-06-15 06:38:42 +02:00
|
|
|
*
|
2009-10-08 10:46:27 +02:00
|
|
|
* \param[in,out] HIDInterfaceInfo Pointer to a structure containing a HID Class configuration and state
|
2009-06-15 06:38:42 +02:00
|
|
|
*/
|
2009-08-26 09:01:32 +02:00
|
|
|
void HID_Device_ProcessControlRequest(USB_ClassInfo_HID_Device_t* HIDInterfaceInfo) ATTR_NON_NULL_PTR_ARG(1);
|
2009-06-08 12:35:42 +02:00
|
|
|
|
2009-06-15 06:38:42 +02:00
|
|
|
/** General management task for a given HID class interface, required for the correct operation of the interface. This should
|
|
|
|
* be called frequently in the main program loop, before the master USB management task \ref USB_USBTask().
|
|
|
|
*
|
2009-10-08 10:46:27 +02:00
|
|
|
* \param[in,out] HIDInterfaceInfo Pointer to a structure containing a HID Class configuration and state
|
2009-06-15 06:38:42 +02:00
|
|
|
*/
|
2009-08-26 09:01:32 +02:00
|
|
|
void HID_Device_USBTask(USB_ClassInfo_HID_Device_t* HIDInterfaceInfo) ATTR_NON_NULL_PTR_ARG(1);
|
2009-06-15 06:38:42 +02:00
|
|
|
|
2009-07-30 16:59:57 +02:00
|
|
|
/** Indicates that a millisecond of idle time has elapsed on the given HID interface, and the interface's idle count should be
|
2009-08-16 10:51:54 +02:00
|
|
|
* decremented. This should be called once per millisecond so that hardware key-repeats function correctly. It is recommended
|
|
|
|
* that this be called by the \ref EVENT_USB_Device_StartOfFrame() event, once SOF events have been enabled via
|
|
|
|
* \ref USB_Device_EnableSOFEvents();.
|
2009-07-30 16:59:57 +02:00
|
|
|
*
|
2009-10-08 10:46:27 +02:00
|
|
|
* \param[in,out] HIDInterfaceInfo Pointer to a structure containing a HID Class configuration and state
|
2009-07-30 16:59:57 +02:00
|
|
|
*/
|
2009-08-26 09:01:32 +02:00
|
|
|
void HID_Device_MillisecondElapsed(USB_ClassInfo_HID_Device_t* HIDInterfaceInfo) ATTR_NON_NULL_PTR_ARG(1);
|
2009-07-30 16:59:57 +02:00
|
|
|
|
2009-09-20 14:01:25 +02:00
|
|
|
/** HID class driver callback for the user creation of a HID IN report. This callback may fire in response to either
|
2009-06-15 06:38:42 +02:00
|
|
|
* HID class control requests from the host, or by the normal HID endpoint polling procedure. Inside this callback the
|
|
|
|
* user is responsible for the creation of the next HID input report to be sent to the host.
|
|
|
|
*
|
2009-10-08 10:46:27 +02:00
|
|
|
* \param[in,out] HIDInterfaceInfo Pointer to a structure containing a HID Class configuration and state
|
2009-06-28 15:39:08 +02:00
|
|
|
* \param[in,out] ReportID If preset to a non-zero value, this is the report ID being requested by the host. If zero, this should
|
2009-09-17 15:12:21 +02:00
|
|
|
* be set to the report ID of the generated HID input report (if any). If multiple reports are not sent via the
|
2009-06-28 15:39:08 +02:00
|
|
|
* given HID interface, this parameter should be ignored.
|
2009-11-23 14:22:33 +01:00
|
|
|
* \param[in] ReportType Type of HID report to generate, either \ref REPORT_ITEM_TYPE_In or \ref REPORT_ITEM_TYPE_Feature
|
|
|
|
* \param[out] ReportData Pointer to a buffer where the generated HID report should be stored
|
2009-07-31 05:22:08 +02:00
|
|
|
* \param[out] ReportSize Number of bytes in the generated input report, or zero if no report is to be sent
|
2009-06-15 06:38:42 +02:00
|
|
|
*
|
2009-07-31 05:22:08 +02:00
|
|
|
* \return Boolean true to force the sending of the report even if it is identical to the previous report and still within
|
|
|
|
* the idle period (useful for devices which report relative movement), false otherwise
|
2009-06-15 06:38:42 +02:00
|
|
|
*/
|
2009-07-31 05:22:08 +02:00
|
|
|
bool CALLBACK_HID_Device_CreateHIDReport(USB_ClassInfo_HID_Device_t* const HIDInterfaceInfo, uint8_t* const ReportID,
|
2009-11-23 14:22:33 +01:00
|
|
|
const uint8_t ReportType, void* ReportData, uint16_t* ReportSize) ATTR_NON_NULL_PTR_ARG(1)
|
|
|
|
ATTR_NON_NULL_PTR_ARG(2) ATTR_NON_NULL_PTR_ARG(4) ATTR_NON_NULL_PTR_ARG(5);
|
2009-07-31 05:22:08 +02:00
|
|
|
|
2009-09-20 14:01:25 +02:00
|
|
|
/** HID class driver callback for the user processing of a received HID OUT report. This callback may fire in response to
|
2009-06-15 06:38:42 +02:00
|
|
|
* either HID class control requests from the host, or by the normal HID endpoint polling procedure. Inside this callback
|
|
|
|
* the user is responsible for the processing of the received HID output report from the host.
|
|
|
|
*
|
2009-10-08 10:46:27 +02:00
|
|
|
* \param[in,out] HIDInterfaceInfo Pointer to a structure containing a HID Class configuration and state
|
2009-06-28 15:39:08 +02:00
|
|
|
* \param[in] ReportID Report ID of the received output report. If multiple reports are not received via the given HID
|
2009-06-15 06:38:42 +02:00
|
|
|
* interface, this parameter should be ignored.
|
2009-06-28 15:39:08 +02:00
|
|
|
* \param[in] ReportData Pointer to a buffer where the received HID report is stored.
|
|
|
|
* \param[in] ReportSize Size in bytes of the received report from the host.
|
2009-06-15 06:38:42 +02:00
|
|
|
*/
|
2009-06-28 15:39:08 +02:00
|
|
|
void CALLBACK_HID_Device_ProcessHIDReport(USB_ClassInfo_HID_Device_t* const HIDInterfaceInfo, const uint8_t ReportID,
|
2009-11-17 12:28:07 +01:00
|
|
|
const void* ReportData, const uint16_t ReportSize) ATTR_NON_NULL_PTR_ARG(1)
|
|
|
|
ATTR_NON_NULL_PTR_ARG(3);
|
2009-06-01 13:03:39 +02:00
|
|
|
|
2009-06-04 04:55:30 +02:00
|
|
|
/* Disable C linkage for C++ Compilers: */
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-06-01 13:03:39 +02:00
|
|
|
#endif
|
2009-06-04 06:02:55 +02:00
|
|
|
|
|
|
|
/** @} */
|