diff --git a/pkg/libfixmath/doc.txt b/pkg/libfixmath/doc.txt index 34caa8fecb..1871b992b8 100644 --- a/pkg/libfixmath/doc.txt +++ b/pkg/libfixmath/doc.txt @@ -1,7 +1,7 @@ /** * @defgroup pkg_libfixmath Cross platform fixed point maths library * @ingroup pkg - * @ingroup sys + * @ingroup sys_math * @brief Provides a cross platform fixed point maths library to RIOT. * @see https://github.com/PetteriAimonen/libfixmath - */ \ No newline at end of file + */ diff --git a/sys/doc.txt b/sys/doc.txt index 9dda1b2c8f..7fa868c9c9 100644 --- a/sys/doc.txt +++ b/sys/doc.txt @@ -22,3 +22,9 @@ * See http://wiki.osdev.org/Stack_Smashing_Protector for a more detailed * description. */ + +/** + * @defgroup sys_math Math libraries and utilities + * @ingroup sys + * @brief Provides math libraries and utilities for RIOT + */ diff --git a/sys/include/div.h b/sys/include/div.h index 54bfa15242..bdb633f184 100644 --- a/sys/include/div.h +++ b/sys/include/div.h @@ -9,13 +9,13 @@ /** * @defgroup sys_div Integer division functions - * @ingroup sys + * @ingroup sys_math * * This header provides some integer division functions that can be used * to prevent linking in compiler-generated ones, which are often larger. * * @file - * @ingroup sys + * @ingroup sys_div * @author Kaspar Schleiser * @author Joakim NohlgÄrd * @{ diff --git a/sys/include/matstat.h b/sys/include/matstat.h index 74c99df101..95e322f735 100644 --- a/sys/include/matstat.h +++ b/sys/include/matstat.h @@ -7,9 +7,7 @@ */ /** - * @defgroup sys_matstat Matstat - Integer mathematical statistics library - * @ingroup sys - * @brief Library for computing 1-pass statistics + * @ingroup sys_matstat * * The Matstat library uses single pass algorithms to compute statistic measures * such as mean and variance over many values. The values can be immediately diff --git a/sys/include/seq.h b/sys/include/seq.h index 942c0d4a2f..e9f007b32e 100644 --- a/sys/include/seq.h +++ b/sys/include/seq.h @@ -7,9 +7,7 @@ */ /** - * @defgroup sys_seq Serial Number Arithmetic - * @ingroup sys - * @brief Serial Number Arithmetic (RFC 1982) + * @ingroup sys_seq * @{ * * @file diff --git a/sys/matstat/doc.txt b/sys/matstat/doc.txt new file mode 100644 index 0000000000..f51cecd850 --- /dev/null +++ b/sys/matstat/doc.txt @@ -0,0 +1,5 @@ +/** + * @defgroup sys_matstat Matstat - Integer mathematical statistics library + * @ingroup sys_math + * @brief Library for computing 1-pass statistics + */ diff --git a/sys/seq/doc.txt b/sys/seq/doc.txt new file mode 100644 index 0000000000..167da65bc9 --- /dev/null +++ b/sys/seq/doc.txt @@ -0,0 +1,5 @@ +/** + * @defgroup sys_seq Serial Number Arithmetic + * @ingroup sys_math + * @brief Serial Number Arithmetic (RFC 1982) + */