mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 04:52:59 +01:00
doc: enable helper macros for doxygen
This commit is contained in:
parent
83c61cb379
commit
21dd2eb21d
@ -26,9 +26,16 @@
|
|||||||
#include "sched.h"
|
#include "sched.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @def ENABLE_DEBUG
|
||||||
|
* @brief This macro can be defined as 0 or other on a file-based level.
|
||||||
|
* If ENABLE_DEBUG is 0 @ref DEBUG() and @ref DEBUGF() will generate
|
||||||
|
* no output if not they will generate output.
|
||||||
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @name Print debug information if the calling thread stack is large enough
|
* @name Print debug information if the calling thread stack is large enough
|
||||||
*
|
*
|
||||||
|
11
doc.txt
Normal file
11
doc.txt
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
/**
|
||||||
|
* @def DEVELHELP
|
||||||
|
* @brief This global macro activates some behavior that helps you while
|
||||||
|
* developing but is otherwise optimized out.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @def TEST_SUITES
|
||||||
|
* @brief This global macro activates functionality that is needed for
|
||||||
|
* automated testing but not needed otherwise.
|
||||||
|
*/
|
@ -1990,7 +1990,10 @@ PREDEFINED = __attribute__(x)= \
|
|||||||
RTT_NUMOF \
|
RTT_NUMOF \
|
||||||
GPIO_NUMOF \
|
GPIO_NUMOF \
|
||||||
SPI_NUMOF \
|
SPI_NUMOF \
|
||||||
UART_NUMOF
|
UART_NUMOF \
|
||||||
|
DEVELHELP \
|
||||||
|
ENABLE_DEBUG \
|
||||||
|
TEST_SUITES
|
||||||
|
|
||||||
|
|
||||||
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
|
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
|
||||||
|
Loading…
Reference in New Issue
Block a user