diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2013-03-18 19:24:55 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2013-03-18 19:24:55 +0000 |
commit | 03cdb09071c5c9ed9dd0f851a0980d360a4492d0 (patch) | |
tree | 26aca239e281055455d88b9d44a8a1c52b97beb1 /LUFA/Drivers/USB | |
parent | 88bcc6fde546f12a31f46b5c8b77631b0c648638 (diff) | |
download | lufa-03cdb09071c5c9ed9dd0f851a0980d360a4492d0.tar.gz lufa-03cdb09071c5c9ed9dd0f851a0980d360a4492d0.tar.bz2 lufa-03cdb09071c5c9ed9dd0f851a0980d360a4492d0.zip |
Minor documentation improvements.
Diffstat (limited to 'LUFA/Drivers/USB')
-rw-r--r-- | LUFA/Drivers/USB/Class/Host/AudioClassHost.h | 2 | ||||
-rw-r--r-- | LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h | 2 | ||||
-rw-r--r-- | LUFA/Drivers/USB/Core/AVR8/Host_AVR8.h | 2 | ||||
-rw-r--r-- | LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h | 2 | ||||
-rw-r--r-- | LUFA/Drivers/USB/Core/UC3/Host_UC3.h | 2 | ||||
-rw-r--r-- | LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.h | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/LUFA/Drivers/USB/Class/Host/AudioClassHost.h b/LUFA/Drivers/USB/Class/Host/AudioClassHost.h index b58e5ba9a..a501868b9 100644 --- a/LUFA/Drivers/USB/Class/Host/AudioClassHost.h +++ b/LUFA/Drivers/USB/Class/Host/AudioClassHost.h @@ -131,7 +131,7 @@ * send and/or received. * * \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class host configuration and state. - * \param[in] EnableStreaming Boolean true to enable streaming of the specified interface, false to disable + * \param[in] EnableStreaming Boolean true to enable streaming of the specified interface, \c false to disable * * \return A value from the \ref USB_Host_SendControlErrorCodes_t enum. */ diff --git a/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h b/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h index 985bc8090..7eaabae93 100644 --- a/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h +++ b/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h @@ -501,7 +501,7 @@ UECONX |= (1 << STALLRQC); } - /** Determines if the currently selected endpoint is stalled, false otherwise. + /** Determines if the currently selected endpoint is stalled, \c false otherwise. * * \ingroup Group_EndpointPacketManagement_AVR8 * diff --git a/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.h b/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.h index 07f3f3faf..4f7f0242a 100644 --- a/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.h +++ b/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.h @@ -236,7 +236,7 @@ } /** Determines if the attached device is currently issuing a Remote Wakeup request, requesting - * that the host resume the USB bus and wake up the device, false otherwise. + * that the host resume the USB bus and wake up the device, \c false otherwise. * * \return Boolean \c true if the attached device has sent a Remote Wakeup request, \c false otherwise. */ diff --git a/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h b/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h index a812c38c8..bcf6b64a5 100644 --- a/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h +++ b/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h @@ -501,7 +501,7 @@ (&AVR32_USBB.UECON0CLR)[USB_Endpoint_SelectedEndpoint].stallrqc = true; } - /** Determines if the currently selected endpoint is stalled, false otherwise. + /** Determines if the currently selected endpoint is stalled, \c false otherwise. * * \ingroup Group_EndpointPacketManagement_UC3 * diff --git a/LUFA/Drivers/USB/Core/UC3/Host_UC3.h b/LUFA/Drivers/USB/Core/UC3/Host_UC3.h index 0359e23bf..19169cea4 100644 --- a/LUFA/Drivers/USB/Core/UC3/Host_UC3.h +++ b/LUFA/Drivers/USB/Core/UC3/Host_UC3.h @@ -233,7 +233,7 @@ } /** Determines if the attached device is currently issuing a Remote Wakeup request, requesting - * that the host resume the USB bus and wake up the device, false otherwise. + * that the host resume the USB bus and wake up the device, \c false otherwise. * * \return Boolean \c true if the attached device has sent a Remote Wakeup request, \c false otherwise. */ diff --git a/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.h b/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.h index 916976b0d..184823c68 100644 --- a/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.h +++ b/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.h @@ -495,7 +495,7 @@ USB_Endpoint_SelectedHandle->CTRL &= ~USB_EP_STALL_bm; } - /** Determines if the currently selected endpoint is stalled, false otherwise. + /** Determines if the currently selected endpoint is stalled, \c false otherwise. * * \ingroup Group_EndpointPacketManagement_XMEGA * |