Fix comment.
[bertos.git] / bertos / cfg / macros.h
index 3ec6b277e51f320f87937098c1a88094ce965a1d..e6706f648f66006810ba009c78d42115afead3f1 100644 (file)
  *
  * -->
  *
+ * \defgroup macros General purpose macros
+ * \ingroup core
+ * \{
+ *
  * \brief Common and handy function macros
  *
  * \author Bernie Innocenti <bernie@codewiz.org>
 
 /**
  * Perform an integer division rounding the result to the upper int value.
- * \note \a divisor should preferibly be a costant, otherwise this macro generates
- * 2 division. Also divisor is evaluated twice.
+ * \note \a divisor is evaluated twice.
  */
 #define DIV_ROUNDUP(dividend, divisor)  (((dividend) + (divisor) - 1) / (divisor))
 
  */
 typedef uint32_t id_t;
 
+/** \} */ //defgroup macros
+
 #endif /* MACROS_H */