mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-16 10:03:50 +01:00
Merge pull request #18431 from kfessel/p-doccheck-fix
doccheck: make the file pattern more match riot.doxyfile
This commit is contained in:
commit
e43a75d293
4
dist/tools/doccheck/check.sh
vendored
4
dist/tools/doccheck/check.sh
vendored
@ -67,8 +67,8 @@ exclude_filter() {
|
|||||||
|
|
||||||
# Check groups are correctly defined (e.g. no undefined groups and no group
|
# Check groups are correctly defined (e.g. no undefined groups and no group
|
||||||
# defined multiple times)
|
# defined multiple times)
|
||||||
ALL_RAW_DEFGROUP=$(git grep -n @defgroup -- '*.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' '*.c' '*.txt' | 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}" | \
|
DEFINED_GROUPS=$(echo "${ALL_RAW_DEFGROUP}" | \
|
||||||
grep -oE '@defgroup[ ]+[^ ]+' | \
|
grep -oE '@defgroup[ ]+[^ ]+' | \
|
||||||
grep -oE '[^ ]+$' | \
|
grep -oE '[^ ]+$' | \
|
||||||
|
|||||||
@ -7,7 +7,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ingroup sys_ztimer_util
|
* @defgroup sys_ztimer_xtimer_compat ztimer_xtimer_compat: xtimer wrapper
|
||||||
|
* @ingroup sys_ztimer
|
||||||
* @{
|
* @{
|
||||||
* @file
|
* @file
|
||||||
* @brief ztimer xtimer wrapper interface
|
* @brief ztimer xtimer wrapper interface
|
||||||
|
|||||||
@ -7,7 +7,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ingroup sys_ztimer_util
|
* @defgroup sys_ztimer64_xtimer_compat ztimer64_xtimer_compat: 64 Bit xtimer wrapper
|
||||||
|
* @ingroup sys_ztimer64
|
||||||
* @{
|
* @{
|
||||||
* @file
|
* @file
|
||||||
* @brief ztimer64 xtimer wrapper interface
|
* @brief ztimer64 xtimer wrapper interface
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user