/// This is a brief comment
///< This is a brief comment after a member
/** * Brief description which ends at this dot. Detailed description * follows after the dot. * * Detailed description continues. */
/// Macro used to calculated @b x and @b y coordinates
/** * See if a timer has expired. * * @param[in,out] tmr Pointer to a timer object * * @retval TRUE timer expired * @retval FALSE timer not expired or timer stopped */ extern bool_t tmr_has_expired(tmr_t* tmr);
/** * @ingroup GENERAL * @defgroup TMR tmr.h : Polled software timers * * Brief description. * * Detailed description. * * @{ */ /// The number of timer ticks per second #define TMR_TICKS_PER_SEC 100ul /** * @} */
1.6.3