diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-04-22 14:28:55 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-04-22 14:28:55 +0000 |
commit | 9cec85bfd92a77a97e7d12625897de2682dfacd7 (patch) | |
tree | a019874fe0b29903e8822c986591044d046d8c82 /LUFA/Drivers/USB/LowLevel/OTG.h | |
parent | 6865a7bc09e31d3bbebb33eefb6475c8713351bd (diff) | |
download | lufa-9cec85bfd92a77a97e7d12625897de2682dfacd7.tar.gz lufa-9cec85bfd92a77a97e7d12625897de2682dfacd7.tar.bz2 lufa-9cec85bfd92a77a97e7d12625897de2682dfacd7.zip |
Documentation enhancements to improve documentation cross-references.
Diffstat (limited to 'LUFA/Drivers/USB/LowLevel/OTG.h')
-rw-r--r-- | LUFA/Drivers/USB/LowLevel/OTG.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/LUFA/Drivers/USB/LowLevel/OTG.h b/LUFA/Drivers/USB/LowLevel/OTG.h index 1f59e0cfa..8defff7ff 100644 --- a/LUFA/Drivers/USB/LowLevel/OTG.h +++ b/LUFA/Drivers/USB/LowLevel/OTG.h @@ -102,7 +102,7 @@ * There are two different methods of sending a SRP - either pulses on the VBUS line, or by
* pulsing the Data + line via the internal pull-up resistor.
*
- * \param SRPTypeMask Mask indicating the type of SRP to use, either USB_OTG_SRP_VBUS or USB_OTG_STP_DATA.
+ * \param SRPTypeMask Mask indicating the type of SRP to use, either \ref USB_OTG_SRP_VBUS or \ref USB_OTG_STP_DATA.
*/
static inline void USB_OTG_DEV_Initiate_SRP(uint8_t SRPTypeMask);
#else
@@ -115,7 +115,7 @@ #define USB_OTG_HOST_Accept_HNP() MACROS{ OTGCON |= (1 << HNPREQ); }MACROE
- #define USB_OTG_HOST_Reject_HNP() MACROS{ OTGCON &= ~(1 << HNPREQ); }MACROE
+ #define USB_OTG_HOST_Reject_HNP() MACROS{ OTGCON &= ~(1 << HNPREQ); }MACROE
#define USB_OTG_HOST_IsHNPReceived() ((OTGCON & (1 << HNPREQ)) ? true : false)
|