More documentation updates

This commit is contained in:
Dirk Ziegelmeier 2016-07-27 19:17:33 +02:00
parent 8ece46d5d2
commit 31f941e172
3 changed files with 4 additions and 3 deletions

View File

@ -2068,7 +2068,8 @@ INCLUDE_FILE_PATTERNS = *.c *.h
# recursively expanded use the := operator instead of the = operator. # recursively expanded use the := operator instead of the = operator.
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
PREDEFINED = NO_SYS=0 \ PREDEFINED = __DOXYGEN__=1 \
NO_SYS=0 \
SYS_LIGHTWEIGHT_PROT=1 \ SYS_LIGHTWEIGHT_PROT=1 \
LWIP_IPV4=1 \ LWIP_IPV4=1 \
LWIP_IPV6=1 \ LWIP_IPV6=1 \

View File

@ -36,7 +36,7 @@
*/ */
/** /**
* @defgroup lwip_nosys NO_SYS ("mainloop") mode * @defgroup lwip_nosys Mainloop mode ("NO_SYS")
* @ingroup lwip * @ingroup lwip
* Use this mode if you do not run an OS on your system. \#define NO_SYS to 1. * Use this mode if you do not run an OS on your system. \#define NO_SYS to 1.
* Feed incoming packets to netif->input(pbuf, netif) function from mainloop, * Feed incoming packets to netif->input(pbuf, netif) function from mainloop,

View File

@ -300,7 +300,7 @@ sys_untimeout(sys_timeout_handler handler, void *arg)
* *
* Must be called periodically from your main loop. * Must be called periodically from your main loop.
*/ */
#if !NO_SYS #if !NO_SYS && !defined __DOXYGEN__
static static
#endif /* !NO_SYS */ #endif /* !NO_SYS */
void void