2017-01-15 12:27:18 +01:00
|
|
|
/**
|
|
|
|
* @defgroup utils Utilities
|
|
|
|
* @brief Utilities and helper functionality
|
|
|
|
*
|
|
|
|
* Additional scripts and configuration options to ease RIOT
|
|
|
|
* development.
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2015-02-10 19:56:01 +01:00
|
|
|
/**
|
|
|
|
* @def DEVELHELP
|
2017-11-20 16:05:24 +01:00
|
|
|
* @brief This global macro activates functionality to help developers.
|
|
|
|
*
|
|
|
|
* Additional code parts such as (extensive) debug output and sanity
|
|
|
|
* checks using assertions. To activate it set environment variable
|
|
|
|
* `DEVELHELP=1`, or disable explicitly with `DEVELHELP=0`.
|
2015-02-10 19:56:01 +01:00
|
|
|
*/
|
2017-01-15 12:27:18 +01:00
|
|
|
#if DOXYGEN
|
|
|
|
# define DEVELHELP
|
|
|
|
#endif
|
2015-02-10 19:56:01 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @def TEST_SUITES
|
|
|
|
* @brief This global macro activates functionality that is needed for
|
|
|
|
* automated testing but not needed otherwise.
|
|
|
|
*/
|
2017-01-15 12:27:18 +01:00
|
|
|
#if DOXYGEN
|
|
|
|
# define TEST_SUITES
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|