Blame view

RIOT/doc.txt 594 Bytes
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  /**
   * @defgroup utils Utilities
   * @brief Utilities and helper functionality
   *
   *        Additional scripts and configuration options to ease RIOT
   *        development.
   * @{
   */
  
  /**
   * @def DEVELHELP
   * @brief   This global macro activates some behavior that helps you while
   *          developing but is otherwise optimized out.
   */
  #if DOXYGEN
  #   define DEVELHELP
  #endif
  
  /**
   * @def TEST_SUITES
   * @brief   This global macro activates functionality that is needed for
   *          automated testing but not needed otherwise.
   */
  #if DOXYGEN
  #   define TEST_SUITES
  #endif
  
  /**
   * @}
   */