Browse Source

doxygen: put the new timer defines into their own section

STABLE-2_1_x
goldsimon 10 years ago
parent
commit
bdaec1691e
  1. 10
      src/include/lwip/opt.h

10
src/include/lwip/opt.h

@ -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

Loading…
Cancel
Save