C
void USBCheckMSDRequest();
Description
This routine handles MSD specific request that happen on EP0. These include, but are not limited to, the standard RESET and GET_MAX_LUN command requests. This function should be called from the USBCBCheckOtherReq() call back function whenever using an MSD 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 USBCheckMSDRequest(); }
Preconditions
None
Remarks
None
MCHPFSUSB Device Library > Function Drivers > Mass Storage Device (MSD) > Public API Members > Functions and Macros > USBCheckMSDRequest Function