aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2019-09-04 22:22:34 +1000
committerDean Camera <dean@fourwalledcubicle.com>2019-09-04 22:22:34 +1000
commit1695f8cc631d0fedd81b3ae6a8c1f02680154454 (patch)
tree5063dbca7921d43f21430a2058ea0f2ec6dbdac0 /LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.h
parent03f72c5fb0bb9b9997b0433d472752c3afe2468c (diff)
downloadlufa-1695f8cc631d0fedd81b3ae6a8c1f02680154454.tar.gz
lufa-1695f8cc631d0fedd81b3ae6a8c1f02680154454.tar.bz2
lufa-1695f8cc631d0fedd81b3ae6a8c1f02680154454.zip
Documentation: Fix Doxygen grouping.
Diffstat (limited to 'LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.h')
-rw-r--r--LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.h b/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.h
index 472ab780f..6be3abdaf 100644
--- a/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.h
+++ b/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.h
@@ -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 pipe, discarding fully read packets from the host
* as needed. The last packet is not automatically discarded once the remaining bytes has been read; the
@@ -173,10 +173,10 @@
uint8_t Pipe_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 pipe from the given buffer in little endian,
* sending full packets to the device as needed. The last packet filled is not automatically sent;
@@ -339,10 +339,10 @@
uint8_t Pipe_Read_Stream_BE(void* const Buffer,
uint16_t Length,
uint16_t* const BytesProcessed) ATTR_NON_NULL_PTR_ARG(1);
- //@}
+ /**@}*/
/** \name Stream functions for EEPROM source/destination data */
- //@{
+ /**@{*/
/** EEPROM buffer source version of \ref Pipe_Write_Stream_LE().
*
@@ -395,10 +395,10 @@
uint8_t Pipe_Read_EStream_BE(void* const Buffer,
uint16_t Length,
uint16_t* const BytesProcessed) ATTR_NON_NULL_PTR_ARG(1);
- //@}
+ /**@}*/
/** \name Stream functions for PROGMEM source/destination data */
- //@{
+ /**@{*/
/** FLASH buffer source version of \ref Pipe_Write_Stream_LE().
*
@@ -429,7 +429,7 @@
uint8_t Pipe_Write_PStream_BE(const void* const Buffer,
uint16_t Length,
uint16_t* const BytesProcessed) ATTR_NON_NULL_PTR_ARG(1);
- //@}
+ /**@}*/
/* Disable C linkage for C++ Compilers: */
#if defined(__cplusplus)