Documentation: Fix Doxygen grouping.
[pub/USBasp.git] / LUFA / Drivers / USB / Core / XMEGA / EndpointStream_XMEGA.h
index cff888d..a62e1ef 100644 (file)
@@ -67,7 +67,7 @@
        /* Public Interface - May be used in end-application: */
                /* Function Prototypes: */
                        /** \name Stream functions for null data */
-                       //@{
+                       /**@{*/
 
                        /** Reads and discards the given number of bytes from the currently selected endpoint's bank,
                         *  discarding fully read packets from the host as needed. The last packet is not automatically
                        uint8_t Endpoint_Null_Stream(uint16_t Length,
                                                     uint16_t* const BytesProcessed);
 
-                       //@}
+                       /**@}*/
 
                        /** \name Stream functions for RAM source/destination data */
-                       //@{
+                       /**@{*/
 
                        /** Writes the given number of bytes to the endpoint from the given buffer in little endian,
                         *  sending full packets to the host as needed. The last packet filled is not automatically sent;
                         */
                        uint8_t Endpoint_Read_Control_Stream_BE(void* const Buffer,
                                                                uint16_t Length) ATTR_NON_NULL_PTR_ARG(1);
-                       //@}
+                       /**@}*/
 
                        /** \name Stream functions for EEPROM source/destination data */
-                       //@{
+                       /**@{*/
 
                        /** EEPROM buffer source version of \ref Endpoint_Write_Stream_LE().
                         *
                         */
                        uint8_t Endpoint_Read_Control_EStream_BE(void* const Buffer,
                                                                 uint16_t Length) ATTR_NON_NULL_PTR_ARG(1);
-                       //@}
+                       /**@}*/
 
                        /** \name Stream functions for PROGMEM source/destination data */
-                       //@{
+                       /**@{*/
 
                        /** FLASH buffer source version of \ref Endpoint_Write_Stream_LE().
                         *
                         */
                        uint8_t Endpoint_Write_Control_PStream_BE(const void* const Buffer,
                                                                  uint16_t Length) ATTR_NON_NULL_PTR_ARG(1);
-                       //@}
+                       /**@}*/
 
        /* Disable C linkage for C++ Compilers: */
                #if defined(__cplusplus)