2018-12-07 10:11:47 +01:00
|
|
|
/**
|
|
|
|
* @defgroup config Compile time configurations
|
|
|
|
* @brief List of compile-time configurations
|
|
|
|
*
|
|
|
|
* This group contains all compile-time configurations macros that are
|
|
|
|
* intended to be modified by the user.
|
|
|
|
*
|
|
|
|
* These configuration macros are defined within modules like this:
|
|
|
|
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ [.c]
|
|
|
|
* #ifndef SOME_CONFIGURATION_PARAM
|
|
|
|
* #define SOME_CONFIGURATION_PARAM DEFAULT_VALUE
|
|
|
|
* #endif
|
|
|
|
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
* Because of that, configurations can be altered e.g via CFLAGS (e.g
|
|
|
|
* `CFLAGS += -DSOME_CONFIGURATION_PARAM=SOME_VALUE`)
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
|
2019-11-24 16:19:48 +01:00
|
|
|
/**
|
|
|
|
* @def CONFIG_THREAD_NAMES
|
|
|
|
* @brief This global macro enable storage of thread names to help developers.
|
|
|
|
*
|
|
|
|
* To activate it set environment variable `THREAD_NAMES=1`, or use Kconfig.
|
|
|
|
* It is automatically enabled if `DEVELHELP` is.
|
|
|
|
*/
|
|
|
|
#if DOXYGEN
|
|
|
|
# define CONFIG_THREAD_NAMES
|
|
|
|
#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
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|