doxygen: put the new timer defines into their own section

This commit is contained in:
goldsimon 2016-07-28 08:20:18 +02:00
parent 5bcaefddd4
commit bdaec1691e

View File

@ -71,13 +71,21 @@
#if !defined NO_SYS || defined __DOXYGEN__
#define NO_SYS 0
#endif
/**
* @}
*/
/**
* @defgroup lwip_opts_timers Timers
* @ingroup lwip_opts
* @{
*/
/**
* LWIP_TIMERS==0: Drop support for sys_timeout and lwip-internal cyclic timers.
* (the array of lwip-internal cyclic timers is still provided)
* (check NO_SYS_NO_TIMERS for compatibility to old versions)
*/
#ifndef LWIP_TIMERS
#ifndef LWIP_TIMERS || defined __DOXYGEN__
#ifdef NO_SYS_NO_TIMERS
#define LWIP_TIMERS (!NO_SYS || (NO_SYS && !NO_SYS_NO_TIMERS))
#else