X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/6a5a37d7d141f109dc02d0bb6d8f4757b533408d..32e735b2b2eefb74e0415a5826692f7ba8c0a984:/LUFA/Drivers/USB/LowLevel/HostChapter9.h diff --git a/LUFA/Drivers/USB/LowLevel/HostChapter9.h b/LUFA/Drivers/USB/LowLevel/HostChapter9.h index 7ced889b3..c2c4ece7a 100644 --- a/LUFA/Drivers/USB/LowLevel/HostChapter9.h +++ b/LUFA/Drivers/USB/LowLevel/HostChapter9.h @@ -28,14 +28,6 @@ this software. */ -/** \file - * - * Module for host mode request processing. This module allows for the transmission of standard, class and - * vendor control requests to the default control endpoint of an attached device while in host mode. - * - * \see Chapter 9 of the USB 2.0 specification. - */ - #ifndef __HOSTCHAPTER9_H__ #define __HOSTCHAPTER9_H__ @@ -58,6 +50,8 @@ * * \see StdRequestType.h for information on the request type and data. * \see The USB 2.0 specification for more information on standard control requests. + * + * \ingroup Group_PipeControlReq */ typedef struct { @@ -71,6 +65,8 @@ /* Enums: */ /** Enum for the USB_Host_SendControlRequest() return code, indicating the reason for the error * if the transfer of the request is unsuccessful. + * + * \ingroup Group_PipeControlReq */ enum USB_Host_SendControlErrorCodes_t { @@ -89,6 +85,8 @@ /** Global for the request to send via the USB_Host_SendControlRequest() function. This * global should be filled with the correct control request data before sending the request to * the attached device while in host mode. + * + * \ingroup Group_PipeControlReq */ extern USB_Host_Request_Header_t USB_HostRequest; @@ -97,6 +95,8 @@ * and transfers the data stored in the buffer to the device, or from the device to the buffer * as requested. The transfer is made on the currently selected pipe. * + * \ingroup Group_PipeControlReq + * * \param BufferPtr Pointer to the start of the data buffer if the request has a data stage, or * NULL if the request transfers no data to or from the device. *