From 6f179214e6b0748a1152d20a11283a20f246b381 Mon Sep 17 00:00:00 2001 From: Karl Fessel Date: Mon, 8 Aug 2022 14:53:12 +0200 Subject: [PATCH 1/2] doccheck: make the file pattern more match riot.doxyfile --- dist/tools/doccheck/check.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/tools/doccheck/check.sh b/dist/tools/doccheck/check.sh index a17ad588611c..e7f513d860f7 100755 --- a/dist/tools/doccheck/check.sh +++ b/dist/tools/doccheck/check.sh @@ -66,8 +66,8 @@ exclude_filter() { # Check groups are correctly defined (e.g. no undefined groups and no group # defined multiple times) -ALL_RAW_DEFGROUP=$(git grep -n @defgroup -- '*.h' '*.c' '*.txt' | exclude_filter) -ALL_RAW_INGROUP=$(git grep -n '@ingroup' -- '*.h' '*.c' '*.txt' | exclude_filter) +ALL_RAW_DEFGROUP=$(git grep -n @defgroup -- '*.h' '*.hpp' '*.txt' 'makefiles/pseudomodules.inc.mk' 'sys/net/gnrc/routing/ipv6_auto_subnets/gnrc_ipv6_auto_subnets.c'| exclude_filter) +ALL_RAW_INGROUP=$(git grep -n '@ingroup' -- '*.h' '*.hpp' '*.txt' 'makefiles/pseudomodules.inc.mk' 'sys/net/gnrc/routing/ipv6_auto_subnets/gnrc_ipv6_auto_subnets.c'| exclude_filter) DEFINED_GROUPS=$(echo "${ALL_RAW_DEFGROUP}" | \ grep -oE '@defgroup[ ]+[^ ]+' | \ grep -oE '[^ ]+$' | \ From 5093153468cf634e871d61ef506b28cce52eadc0 Mon Sep 17 00:00:00 2001 From: Karl Fessel Date: Mon, 8 Aug 2022 15:02:50 +0200 Subject: [PATCH 2/2] ztimer(64): make xtimer_compat documetation visible (defgroup) --- sys/include/ztimer/xtimer_compat.h | 3 ++- sys/include/ztimer64/xtimer_compat.h | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/sys/include/ztimer/xtimer_compat.h b/sys/include/ztimer/xtimer_compat.h index 85f2b28079c6..daf9cab34c3a 100644 --- a/sys/include/ztimer/xtimer_compat.h +++ b/sys/include/ztimer/xtimer_compat.h @@ -7,7 +7,8 @@ */ /** - * @ingroup sys_ztimer_util + * @defgroup sys_ztimer_xtimer_compat ztimer_xtimer_compat: xtimer wrapper + * @ingroup sys_ztimer * @{ * @file * @brief ztimer xtimer wrapper interface diff --git a/sys/include/ztimer64/xtimer_compat.h b/sys/include/ztimer64/xtimer_compat.h index 2bb034f7d8d2..3f10bbd57fe6 100644 --- a/sys/include/ztimer64/xtimer_compat.h +++ b/sys/include/ztimer64/xtimer_compat.h @@ -7,7 +7,8 @@ */ /** - * @ingroup sys_ztimer_util + * @defgroup sys_ztimer64_xtimer_compat ztimer64_xtimer_compat: 64 Bit xtimer wrapper + * @ingroup sys_ztimer64 * @{ * @file * @brief ztimer64 xtimer wrapper interface