/*\r
LUFA Library\r
- Copyright (C) Dean Camera, 2009.\r
+ Copyright (C) Dean Camera, 2010.\r
\r
dean [at] fourwalledcubicle [dot] com\r
www.fourwalledcubicle.com\r
*/\r
\r
/*\r
- Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)\r
+ Copyright 2010 Dean Camera (dean [at] fourwalledcubicle [dot] com)\r
\r
- Permission to use, copy, modify, and distribute this software\r
- and its documentation for any purpose and without fee is hereby\r
- granted, provided that the above copyright notice appear in all\r
- copies and that both that the copyright notice and this\r
- permission notice and warranty disclaimer appear in supporting\r
- documentation, and that the name of the author not be used in\r
- advertising or publicity pertaining to distribution of the\r
+ Permission to use, copy, modify, distribute, and sell this \r
+ software and its documentation for any purpose is hereby granted\r
+ without fee, provided that the above copyright notice appear in \r
+ all copies and that both that the copyright notice and this\r
+ permission notice and warranty disclaimer appear in supporting \r
+ documentation, and that the name of the author not be used in \r
+ advertising or publicity pertaining to distribution of the \r
software without specific, written prior permission.\r
\r
The author disclaim all warranties with regard to this\r
* be a standard request that the library has no handler code for, or a class specific request\r
* issued to the device which must be handled appropriately.\r
*\r
- * This event is time-critical; eack packet within the request transaction must be acknowedged or\r
+ * This event is time-critical; each packet within the request transaction must be acknowledged or\r
* sent within 50ms or the host will abort the transfer.\r
*\r
+ * The library interally handles all standard control requests with the exceptions of SYNC FRAME,\r
+ * SET DESCRIPTOR and SET INTERFACE. These and all other non-standard control requests will be left\r
+ * for the user to process via this event if desired. If not handled in the user application, requests\r
+ * are automatically STALLed.\r
+ *\r
* \note This event does not exist if the USB_HOST_ONLY token is supplied to the compiler (see\r
* \ref Group_USBManagement documentation).\r
*\r
void EVENT_USB_Device_Reset(void);\r
\r
/** Event for USB Start Of Frame detection, when enabled. This event fires at the start of each USB\r
- * frame, once per millisecond, and is synchronised to the USB bus. This can be used as an accurate\r
+ * frame, once per millisecond, and is synchronized to the USB bus. This can be used as an accurate\r
* millisecond timer source when the USB bus is enumerated in device mode to a USB host.\r
*\r
* This event is time-critical; it is run once per millisecond and thus long handlers will significantly\r