aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-02-20 18:27:09 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-02-20 18:27:09 +0000
commit86be7f93304c4e86a91b8a77087cd69e8f422ddd (patch)
tree83345f271d8cb4f62b7e35f7166381b1ade4f45d /LUFA
parent3a00e41639f06bd096f7437c951caf8b0dd46848 (diff)
downloadlufa-86be7f93304c4e86a91b8a77087cd69e8f422ddd.tar.gz
lufa-86be7f93304c4e86a91b8a77087cd69e8f422ddd.tar.bz2
lufa-86be7f93304c4e86a91b8a77087cd69e8f422ddd.zip
Fix incorrect Doxygen grouping in the incomplete AVR32 UC3B architecture port.
Diffstat (limited to 'LUFA')
-rw-r--r--LUFA/Drivers/USB/Core/UC3B/Endpoint_UC3B.h62
-rw-r--r--LUFA/Drivers/USB/Core/UC3B/Pipe_UC3B.h56
2 files changed, 59 insertions, 59 deletions
diff --git a/LUFA/Drivers/USB/Core/UC3B/Endpoint_UC3B.h b/LUFA/Drivers/USB/Core/UC3B/Endpoint_UC3B.h
index dcafe63b5..bc347b436 100644
--- a/LUFA/Drivers/USB/Core/UC3B/Endpoint_UC3B.h
+++ b/LUFA/Drivers/USB/Core/UC3B/Endpoint_UC3B.h
@@ -45,7 +45,7 @@
/** \ingroup Group_EndpointPrimitiveRW
* \defgroup Group_EndpointPrimitiveRW_UC3B Read/Write of Primitive Data Types (UC3B)
- * \brief Endpoint primative read/write definitions for the Atmel UC3B architecture.
+ * \brief Endpoint primative read/write definitions for the Atmel AVR32 UC3B architecture.
*
* Functions, macros, variables, enums and types related to data reading and writing of primitive data types
* from and to endpoints.
@@ -53,14 +53,14 @@
/** \ingroup Group_EndpointPacketManagement
* \defgroup Group_EndpointPacketManagement_UC3B Endpoint Packet Management (UC3B)
- * \brief Endpoint packet management definitions for the Atmel UC3B architecture.
+ * \brief Endpoint packet management definitions for the Atmel AVR32 UC3B architecture.
*
* Functions, macros, variables, enums and types related to packet management of endpoints.
*/
/** \ingroup Group_EndpointManagement
* \defgroup Group_EndpointManagement_UC3B Endpoint Management (UC3B)
- * \brief Endpoint management definitions for the Atmel UC3B architecture.
+ * \brief Endpoint management definitions for the Atmel AVR32 UC3B architecture.
*
* Functions, macros and enums related to endpoint management when in USB Device mode. This
* module contains the endpoint management macros, as well as endpoint interrupt and data
@@ -236,7 +236,7 @@
/* Enums: */
/** Enum for the possible error return codes of the \ref Endpoint_WaitUntilReady() function.
*
- * \ingroup Group_EndpointRW_AVR8
+ * \ingroup Group_EndpointRW_UC3B
*/
enum Endpoint_WaitUntilReady_ErrorCodes_t
{
@@ -320,7 +320,7 @@
* \note The return width of this function may differ, depending on the maximum endpoint bank size
* of the selected AVR model.
*
- * \ingroup Group_EndpointRW_AVR8
+ * \ingroup Group_EndpointRW_UC3B
*
* \return Total number of bytes in the currently selected Endpoint's FIFO buffer.
*/
@@ -403,7 +403,7 @@
* transmission via the \ref Endpoint_ClearIN() command, or are awaiting acknowledgement via the
* \ref Endpoint_ClearOUT() command.
*
- * \ingroup Group_EndpointPacketManagement_AVR8
+ * \ingroup Group_EndpointPacketManagement_UC3B
*
* \return Total number of busy banks in the selected endpoint.
*/
@@ -417,7 +417,7 @@
* will terminate all queued transactions, resetting the endpoint banks ready for a new
* packet.
*
- * \ingroup Group_EndpointPacketManagement_AVR8
+ * \ingroup Group_EndpointPacketManagement_UC3B
*/
static inline void Endpoint_AbortPendingIN(void)
{
@@ -434,7 +434,7 @@
* is an OUT direction and no packet (or an empty packet) has been received, or if the endpoint is an IN
* direction and the endpoint bank is full.
*
- * \ingroup Group_EndpointPacketManagement_AVR8
+ * \ingroup Group_EndpointPacketManagement_UC3B
*
* \return Boolean \c true if the currently selected endpoint may be read from or written to, depending
* on its direction.
@@ -485,7 +485,7 @@
/** Determines if the selected IN endpoint is ready for a new packet to be sent to the host.
*
- * \ingroup Group_EndpointPacketManagement_AVR8
+ * \ingroup Group_EndpointPacketManagement_UC3B
*
* \return Boolean \c true if the current endpoint is ready for an IN packet, \c false otherwise.
*/
@@ -497,7 +497,7 @@
/** Determines if the selected OUT endpoint has received new packet from the host.
*
- * \ingroup Group_EndpointPacketManagement_AVR8
+ * \ingroup Group_EndpointPacketManagement_UC3B
*
* \return Boolean \c true if current endpoint is has received an OUT packet, \c false otherwise.
*/
@@ -509,7 +509,7 @@
/** Determines if the current CONTROL type endpoint has received a SETUP packet.
*
- * \ingroup Group_EndpointPacketManagement_AVR8
+ * \ingroup Group_EndpointPacketManagement_UC3B
*
* \return Boolean \c true if the selected endpoint has received a SETUP packet, \c false otherwise.
*/
@@ -522,7 +522,7 @@
/** Clears a received SETUP packet on the currently selected CONTROL type endpoint, freeing up the
* endpoint for the next packet.
*
- * \ingroup Group_EndpointPacketManagement_AVR8
+ * \ingroup Group_EndpointPacketManagement_UC3B
*
* \note This is not applicable for non CONTROL type endpoints.
*/
@@ -535,7 +535,7 @@
/** Sends an IN packet to the host on the currently selected endpoint, freeing up the endpoint for the
* next packet and switching to the alternative endpoint bank if double banked.
*
- * \ingroup Group_EndpointPacketManagement_AVR8
+ * \ingroup Group_EndpointPacketManagement_UC3B
*/
static inline void Endpoint_ClearIN(void) ATTR_ALWAYS_INLINE;
static inline void Endpoint_ClearIN(void)
@@ -547,7 +547,7 @@
/** Acknowledges an OUT packet to the host on the currently selected endpoint, freeing up the endpoint
* for the next packet and switching to the alternative endpoint bank if double banked.
*
- * \ingroup Group_EndpointPacketManagement_AVR8
+ * \ingroup Group_EndpointPacketManagement_UC3B
*/
static inline void Endpoint_ClearOUT(void) ATTR_ALWAYS_INLINE;
static inline void Endpoint_ClearOUT(void)
@@ -565,7 +565,7 @@
* is called, or the host issues a CLEAR FEATURE request to the device for the currently selected
* endpoint.
*
- * \ingroup Group_EndpointPacketManagement_AVR8
+ * \ingroup Group_EndpointPacketManagement_UC3B
*/
static inline void Endpoint_StallTransaction(void) ATTR_ALWAYS_INLINE;
static inline void Endpoint_StallTransaction(void)
@@ -575,7 +575,7 @@
/** Clears the STALL condition on the currently selected endpoint.
*
- * \ingroup Group_EndpointPacketManagement_AVR8
+ * \ingroup Group_EndpointPacketManagement_UC3B
*/
static inline void Endpoint_ClearStall(void) ATTR_ALWAYS_INLINE;
static inline void Endpoint_ClearStall(void)
@@ -585,7 +585,7 @@
/** Determines if the currently selected endpoint is stalled, false otherwise.
*
- * \ingroup Group_EndpointPacketManagement_AVR8
+ * \ingroup Group_EndpointPacketManagement_UC3B
*
* \return Boolean \c true if the currently selected endpoint is stalled, \c false otherwise.
*/
@@ -624,7 +624,7 @@
/** Reads one byte from the currently selected endpoint's bank, for OUT direction endpoints.
*
- * \ingroup Group_EndpointPrimitiveRW_AVR8
+ * \ingroup Group_EndpointPrimitiveRW_AVR32
*
* \return Next byte in the currently selected endpoint's FIFO buffer.
*/
@@ -636,7 +636,7 @@
/** Writes one byte from the currently selected endpoint's bank, for IN direction endpoints.
*
- * \ingroup Group_EndpointPrimitiveRW_AVR8
+ * \ingroup Group_EndpointPrimitiveRW_AVR32
*
* \param[in] Byte Next byte to write into the the currently selected endpoint's FIFO buffer.
*/
@@ -648,7 +648,7 @@
/** Discards one byte from the currently selected endpoint's bank, for OUT direction endpoints.
*
- * \ingroup Group_EndpointPrimitiveRW_AVR8
+ * \ingroup Group_EndpointPrimitiveRW_UC3B
*/
static inline void Endpoint_Discard_Byte(void) ATTR_ALWAYS_INLINE;
static inline void Endpoint_Discard_Byte(void)
@@ -661,7 +661,7 @@
/** Reads two bytes from the currently selected endpoint's bank in little endian format, for OUT
* direction endpoints.
*
- * \ingroup Group_EndpointPrimitiveRW_AVR8
+ * \ingroup Group_EndpointPrimitiveRW_UC3B
*
* \return Next word in the currently selected endpoint's FIFO buffer.
*/
@@ -683,7 +683,7 @@
/** Reads two bytes from the currently selected endpoint's bank in big endian format, for OUT
* direction endpoints.
*
- * \ingroup Group_EndpointPrimitiveRW_AVR8
+ * \ingroup Group_EndpointPrimitiveRW_UC3B
*
* \return Next word in the currently selected endpoint's FIFO buffer.
*/
@@ -705,7 +705,7 @@
/** Writes two bytes to the currently selected endpoint's bank in little endian format, for IN
* direction endpoints.
*
- * \ingroup Group_EndpointPrimitiveRW_AVR8
+ * \ingroup Group_EndpointPrimitiveRW_UC3B
*
* \param[in] Word Next word to write to the currently selected endpoint's FIFO buffer.
*/
@@ -719,7 +719,7 @@
/** Writes two bytes to the currently selected endpoint's bank in big endian format, for IN
* direction endpoints.
*
- * \ingroup Group_EndpointPrimitiveRW_AVR8
+ * \ingroup Group_EndpointPrimitiveRW_UC3B
*
* \param[in] Word Next word to write to the currently selected endpoint's FIFO buffer.
*/
@@ -732,7 +732,7 @@
/** Discards two bytes from the currently selected endpoint's bank, for OUT direction endpoints.
*
- * \ingroup Group_EndpointPrimitiveRW_AVR8
+ * \ingroup Group_EndpointPrimitiveRW_UC3B
*/
static inline void Endpoint_Discard_Word(void) ATTR_ALWAYS_INLINE;
static inline void Endpoint_Discard_Word(void)
@@ -746,7 +746,7 @@
/** Reads four bytes from the currently selected endpoint's bank in little endian format, for OUT
* direction endpoints.
*
- * \ingroup Group_EndpointPrimitiveRW_AVR8
+ * \ingroup Group_EndpointPrimitiveRW_UC3B
*
* \return Next double word in the currently selected endpoint's FIFO buffer.
*/
@@ -770,7 +770,7 @@
/** Reads four bytes from the currently selected endpoint's bank in big endian format, for OUT
* direction endpoints.
*
- * \ingroup Group_EndpointPrimitiveRW_AVR8
+ * \ingroup Group_EndpointPrimitiveRW_UC3B
*
* \return Next double word in the currently selected endpoint's FIFO buffer.
*/
@@ -794,7 +794,7 @@
/** Writes four bytes to the currently selected endpoint's bank in little endian format, for IN
* direction endpoints.
*
- * \ingroup Group_EndpointPrimitiveRW_AVR8
+ * \ingroup Group_EndpointPrimitiveRW_UC3B
*
* \param[in] DWord Next double word to write to the currently selected endpoint's FIFO buffer.
*/
@@ -810,7 +810,7 @@
/** Writes four bytes to the currently selected endpoint's bank in big endian format, for IN
* direction endpoints.
*
- * \ingroup Group_EndpointPrimitiveRW_AVR8
+ * \ingroup Group_EndpointPrimitiveRW_UC3B
*
* \param[in] DWord Next double word to write to the currently selected endpoint's FIFO buffer.
*/
@@ -825,7 +825,7 @@
/** Discards four bytes from the currently selected endpoint's bank, for OUT direction endpoints.
*
- * \ingroup Group_EndpointPrimitiveRW_AVR8
+ * \ingroup Group_EndpointPrimitiveRW_UC3B
*/
static inline void Endpoint_Discard_DWord(void) ATTR_ALWAYS_INLINE;
static inline void Endpoint_Discard_DWord(void)
@@ -872,7 +872,7 @@
*
* \note This routine should not be called on CONTROL type endpoints.
*
- * \ingroup Group_EndpointRW_AVR8
+ * \ingroup Group_EndpointRW_UC3B
*
* \return A value from the \ref Endpoint_WaitUntilReady_ErrorCodes_t enum.
*/
diff --git a/LUFA/Drivers/USB/Core/UC3B/Pipe_UC3B.h b/LUFA/Drivers/USB/Core/UC3B/Pipe_UC3B.h
index eeeb1692e..e904518fb 100644
--- a/LUFA/Drivers/USB/Core/UC3B/Pipe_UC3B.h
+++ b/LUFA/Drivers/USB/Core/UC3B/Pipe_UC3B.h
@@ -197,7 +197,7 @@
/* Enums: */
/** Enum for the possible error return codes of the \ref Pipe_WaitUntilReady() function.
*
- * \ingroup Group_PipeRW_AVR8
+ * \ingroup Group_PipeRW_UC3B
*/
enum Pipe_WaitUntilReady_ErrorCodes_t
{
@@ -216,7 +216,7 @@
* \note The return width of this function may differ, depending on the maximum pipe bank size
* of the selected AVR model.
*
- * \ingroup Group_PipeRW_AVR8
+ * \ingroup Group_PipeRW_UC3B
*
* \return Total number of bytes in the currently selected pipe's FIFO buffer.
*/
@@ -457,7 +457,7 @@
* transmission via the \ref Pipe_ClearOUT() command, or are awaiting acknowledgement via the
* \ref Pipe_ClearIN() command.
*
- * \ingroup Group_PipePacketManagement_AVR8
+ * \ingroup Group_PipePacketManagement_UC3B
*
* \return Total number of busy banks in the selected pipe.
*/
@@ -474,7 +474,7 @@
*
* \note This function is not valid on CONTROL type pipes.
*
- * \ingroup Group_PipePacketManagement_AVR8
+ * \ingroup Group_PipePacketManagement_UC3B
*
* \return Boolean \c true if the currently selected pipe may be read from or written to, depending
* on its direction.
@@ -487,7 +487,7 @@
/** Determines if a packet has been received on the currently selected IN pipe from the attached device.
*
- * \ingroup Group_PipePacketManagement_AVR8
+ * \ingroup Group_PipePacketManagement_UC3B
*
* \return Boolean \c true if the current pipe has received an IN packet, \c false otherwise.
*/
@@ -499,7 +499,7 @@
/** Determines if the currently selected OUT pipe is ready to send an OUT packet to the attached device.
*
- * \ingroup Group_PipePacketManagement_AVR8
+ * \ingroup Group_PipePacketManagement_UC3B
*
* \return Boolean \c true if the current pipe is ready for an OUT packet, \c false otherwise.
*/
@@ -512,7 +512,7 @@
/** Determines if no SETUP request is currently being sent to the attached device on the selected
* CONTROL type pipe.
*
- * \ingroup Group_PipePacketManagement_AVR8
+ * \ingroup Group_PipePacketManagement_UC3B
*
* \return Boolean \c true if the current pipe is ready for a SETUP packet, \c false otherwise.
*/
@@ -524,7 +524,7 @@
/** Sends the currently selected CONTROL type pipe's contents to the device as a SETUP packet.
*
- * \ingroup Group_PipePacketManagement_AVR8
+ * \ingroup Group_PipePacketManagement_UC3B
*/
static inline void Pipe_ClearSETUP(void) ATTR_ALWAYS_INLINE;
static inline void Pipe_ClearSETUP(void)
@@ -535,7 +535,7 @@
/** Acknowledges the reception of a setup IN request from the attached device on the currently selected
* pipe, freeing the bank ready for the next packet.
*
- * \ingroup Group_PipePacketManagement_AVR8
+ * \ingroup Group_PipePacketManagement_UC3B
*/
static inline void Pipe_ClearIN(void) ATTR_ALWAYS_INLINE;
static inline void Pipe_ClearIN(void)
@@ -546,7 +546,7 @@
/** Sends the currently selected pipe's contents to the device as an OUT packet on the selected pipe, freeing
* the bank ready for the next packet.
*
- * \ingroup Group_PipePacketManagement_AVR8
+ * \ingroup Group_PipePacketManagement_UC3B
*/
static inline void Pipe_ClearOUT(void) ATTR_ALWAYS_INLINE;
static inline void Pipe_ClearOUT(void)
@@ -560,7 +560,7 @@
* received, it must be cleared using \ref Pipe_ClearNAKReceived() before the previous (or any other) packet
* can be re-sent.
*
- * \ingroup Group_PipePacketManagement_AVR8
+ * \ingroup Group_PipePacketManagement_UC3B
*
* \return Boolean \c true if an NAK has been received on the current pipe, \c false otherwise.
*/
@@ -572,7 +572,7 @@
/** Clears the NAK condition on the currently selected pipe.
*
- * \ingroup Group_PipePacketManagement_AVR8
+ * \ingroup Group_PipePacketManagement_UC3B
*
* \see \ref Pipe_IsNAKReceived() for more details.
*/
@@ -584,7 +584,7 @@
/** Determines if the currently selected pipe has had the STALL condition set by the attached device.
*
- * \ingroup Group_PipePacketManagement_AVR8
+ * \ingroup Group_PipePacketManagement_UC3B
*
* \return Boolean \c true if the current pipe has been stalled by the attached device, \c false otherwise.
*/
@@ -597,7 +597,7 @@
/** Clears the STALL condition detection flag on the currently selected pipe, but does not clear the
* STALL condition itself (this must be done via a ClearFeature control request to the device).
*
- * \ingroup Group_PipePacketManagement_AVR8
+ * \ingroup Group_PipePacketManagement_UC3B
*/
static inline void Pipe_ClearStall(void) ATTR_ALWAYS_INLINE;
static inline void Pipe_ClearStall(void)
@@ -607,7 +607,7 @@
/** Reads one byte from the currently selected pipe's bank, for OUT direction pipes.
*
- * \ingroup Group_PipePrimitiveRW_AVR8
+ * \ingroup Group_PipePrimitiveRW_UC3B
*
* \return Next byte in the currently selected pipe's FIFO buffer.
*/
@@ -619,7 +619,7 @@
/** Writes one byte from the currently selected pipe's bank, for IN direction pipes.
*
- * \ingroup Group_PipePrimitiveRW_AVR8
+ * \ingroup Group_PipePrimitiveRW_UC3B
*
* \param[in] Byte Next byte to write into the the currently selected pipe's FIFO buffer.
*/
@@ -631,7 +631,7 @@
/** Discards one byte from the currently selected pipe's bank, for OUT direction pipes.
*
- * \ingroup Group_PipePrimitiveRW_AVR8
+ * \ingroup Group_PipePrimitiveRW_UC3B
*/
static inline void Pipe_Discard_Byte(void) ATTR_ALWAYS_INLINE;
static inline void Pipe_Discard_Byte(void)
@@ -644,7 +644,7 @@
/** Reads two bytes from the currently selected pipe's bank in little endian format, for OUT
* direction pipes.
*
- * \ingroup Group_PipePrimitiveRW_AVR8
+ * \ingroup Group_PipePrimitiveRW_UC3B
*
* \return Next word in the currently selected pipe's FIFO buffer.
*/
@@ -666,7 +666,7 @@
/** Reads two bytes from the currently selected pipe's bank in big endian format, for OUT
* direction pipes.
*
- * \ingroup Group_PipePrimitiveRW_AVR8
+ * \ingroup Group_PipePrimitiveRW_UC3B
*
* \return Next word in the currently selected pipe's FIFO buffer.
*/
@@ -688,7 +688,7 @@
/** Writes two bytes to the currently selected pipe's bank in little endian format, for IN
* direction pipes.
*
- * \ingroup Group_PipePrimitiveRW_AVR8
+ * \ingroup Group_PipePrimitiveRW_UC3B
*
* \param[in] Word Next word to write to the currently selected pipe's FIFO buffer.
*/
@@ -702,7 +702,7 @@
/** Writes two bytes to the currently selected pipe's bank in big endian format, for IN
* direction pipes.
*
- * \ingroup Group_PipePrimitiveRW_AVR8
+ * \ingroup Group_PipePrimitiveRW_UC3B
*
* \param[in] Word Next word to write to the currently selected pipe's FIFO buffer.
*/
@@ -715,7 +715,7 @@
/** Discards two bytes from the currently selected pipe's bank, for OUT direction pipes.
*
- * \ingroup Group_PipePrimitiveRW_AVR8
+ * \ingroup Group_PipePrimitiveRW_UC3B
*/
static inline void Pipe_Discard_Word(void) ATTR_ALWAYS_INLINE;
static inline void Pipe_Discard_Word(void)
@@ -729,7 +729,7 @@
/** Reads four bytes from the currently selected pipe's bank in little endian format, for OUT
* direction pipes.
*
- * \ingroup Group_PipePrimitiveRW_AVR8
+ * \ingroup Group_PipePrimitiveRW_UC3B
*
* \return Next double word in the currently selected pipe's FIFO buffer.
*/
@@ -753,7 +753,7 @@
/** Reads four bytes from the currently selected pipe's bank in big endian format, for OUT
* direction pipes.
*
- * \ingroup Group_PipePrimitiveRW_AVR8
+ * \ingroup Group_PipePrimitiveRW_UC3B
*
* \return Next double word in the currently selected pipe's FIFO buffer.
*/
@@ -777,7 +777,7 @@
/** Writes four bytes to the currently selected pipe's bank in little endian format, for IN
* direction pipes.
*
- * \ingroup Group_PipePrimitiveRW_AVR8
+ * \ingroup Group_PipePrimitiveRW_UC3B
*
* \param[in] DWord Next double word to write to the currently selected pipe's FIFO buffer.
*/
@@ -793,7 +793,7 @@
/** Writes four bytes to the currently selected pipe's bank in big endian format, for IN
* direction pipes.
*
- * \ingroup Group_PipePrimitiveRW_AVR8
+ * \ingroup Group_PipePrimitiveRW_UC3B
*
* \param[in] DWord Next double word to write to the currently selected pipe's FIFO buffer.
*/
@@ -808,7 +808,7 @@
/** Discards four bytes from the currently selected pipe's bank, for OUT direction pipes.
*
- * \ingroup Group_PipePrimitiveRW_AVR8
+ * \ingroup Group_PipePrimitiveRW_UC3B
*/
static inline void Pipe_Discard_DWord(void) ATTR_ALWAYS_INLINE;
static inline void Pipe_Discard_DWord(void)
@@ -889,7 +889,7 @@
/** Spin-loops until the currently selected non-control pipe is ready for the next packed of data to be read
* or written to it, aborting in the case of an error condition (such as a timeout or device disconnect).
*
- * \ingroup Group_PipeRW_AVR8
+ * \ingroup Group_PipeRW_UC3B
*
* \return A value from the \ref Pipe_WaitUntilReady_ErrorCodes_t enum.
*/