X-Git-Url: http://git.linex4red.de/pub/lufa.git/blobdiff_plain/fb3fcb968ea70f8b5c6d8f7edde65745e49628f2..6933f2e1a543b066ebe734bd126a7ff2f1c2777f:/LUFA/Drivers/USB/HighLevel/USBTask.h diff --git a/LUFA/Drivers/USB/HighLevel/USBTask.h b/LUFA/Drivers/USB/HighLevel/USBTask.h index 5bbd4f92e..c8180f588 100644 --- a/LUFA/Drivers/USB/HighLevel/USBTask.h +++ b/LUFA/Drivers/USB/HighLevel/USBTask.h @@ -76,7 +76,7 @@ */ extern volatile bool USB_IsConnected; - /** Indicates if the USB interface is currently initialized but not neccesarily connected to a host + /** Indicates if the USB interface is currently initialized but not necessarily connected to a host * or device (i.e. if USB_Init() has been run). If this is false, all other library globals are invalid. * * \note This variable should be treated as read-only in the user application, and never manually @@ -166,10 +166,10 @@ * The USB task must be serviced within 50mS in all modes, when needed. The task may be serviced * at all times, or (for minimum CPU consumption): * - * - In device mode, it may be disabled at startup, enabled on the firing of the USB_Connect event + * - In device mode, it may be disabled at start-up, enabled on the firing of the USB_Connect event * and disabled again on the firing of the USB_Disconnect event. * - * - In host mode, it may be disabled at startup, enabled on the firing of the USB_DeviceAttached + * - In host mode, it may be disabled at start-up, enabled on the firing of the USB_DeviceAttached * event and disabled again on the firing of the USB_DeviceUnattached event. * * \see Events.h for more information on the USB events.