aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Common/Endianness.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/Common/Endianness.h
parent03f72c5fb0bb9b9997b0433d472752c3afe2468c (diff)
downloadlufa-1695f8cc631d0fedd81b3ae6a8c1f02680154454.tar.gz
lufa-1695f8cc631d0fedd81b3ae6a8c1f02680154454.tar.bz2
lufa-1695f8cc631d0fedd81b3ae6a8c1f02680154454.zip
Documentation: Fix Doxygen grouping.
Diffstat (limited to 'LUFA/Common/Endianness.h')
-rw-r--r--LUFA/Common/Endianness.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/LUFA/Common/Endianness.h b/LUFA/Common/Endianness.h
index 32ef463a0..cdc90e5b8 100644
--- a/LUFA/Common/Endianness.h
+++ b/LUFA/Common/Endianness.h
@@ -122,7 +122,7 @@
#define CPU_TO_BE32(x) (x)
#elif !defined(le16_to_cpu)
/** \name Run-time endianness conversion */
- //@{
+ /**@{*/
/** Performs a conversion between a Little Endian encoded 16-bit piece of data and the
* Endianness of the currently selected CPU architecture.
@@ -252,10 +252,10 @@
*/
#define cpu_to_be32(x) SwapEndian_32(x)
- //@}
+ /**@}*/
/** \name Compile-time endianness conversion */
- //@{
+ /**@{*/
/** Performs a conversion between a Little Endian encoded 16-bit piece of data and the
* Endianness of the currently selected CPU architecture.
@@ -385,7 +385,7 @@
*/
#define CPU_TO_BE32(x) SWAPENDIAN_32(x)
- //! @}
+ /**@}*/
#endif
/* Inline Functions: */