1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

doc/doxygen: add gnrc_ipv6_auto_subnets.c to INPUT

This commit is contained in:
Benjamin Valentin 2022-07-15 11:29:26 +02:00
parent c7ac22c892
commit d4a3521501
2 changed files with 6 additions and 1 deletions

View File

@ -776,7 +776,8 @@ INPUT = ../../doc.txt \
src/release-cycle.md \
src/changelog.md \
../../LOSTANDFOUND.md \
../../makefiles/pseudomodules.inc.mk
../../makefiles/pseudomodules.inc.mk \
../../sys/net/gnrc/routing/ipv6_auto_subnets/gnrc_ipv6_auto_subnets.c
# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses

View File

@ -128,6 +128,9 @@
#define CONFIG_GNRC_IPV6_AUTO_SUBNETS_NUMOF (1)
#endif
/* Code below should not be included by Doxygen */
#ifndef DOXYGEN
#define SERVER_THREAD_STACKSIZE (THREAD_STACKSIZE_DEFAULT)
#define SERVER_MSG_QUEUE_SIZE (CONFIG_GNRC_IPV6_AUTO_SUBNETS_PEERS_MAX)
#define SERVER_MSG_TYPE_TIMEOUT (0x8fae)
@ -645,4 +648,5 @@ void gnrc_ipv6_auto_subnets_init(void)
_eventloop, NULL, "auto_subnets");
}
#endif /* !IS_USED(MODULE_GNRC_IPV6_AUTO_SUBNETS_SIMPLE) */
#endif /* !DOXYGEN */
/** @} */