C
void USBCheckHIDRequest();
Description
This routine handles HID specific request that happen on EP0. These include, but are not limited to, requests for the HID report descriptors. This function should be called from the USBCBCheckOtherReq() call back function whenever using an HID device.
Typical Usage:
void USBCBCheckOtherReq(void) { //Since the stack didn't handle the request I need to check // my class drivers to see if it is for them USBCheckHIDRequest(); }
Preconditions
None
Remarks
None
MCHPFSUSB Device Library > Function Drivers > Human Interface Device (HID) > Public API Members > Functions and Macros > USBCheckHIDRequest Function