![]() |
RT-Thread RTOS
An open source embedded real-time operating system
|
Collaboration diagram for Doxygen Example of Macro:Modules | |
| Group A of Macros | |
| Group B of Macros | |
Macros | |
| #define | DOXYGEN_EXAMPLE_CONST_A 100 |
| #define | DOXYGEN_EXAMPLE_CONST_B 200 |
| #define | DOXYGEN_EXAMPLE_ABS(x) (((x)>0)?(x):-(x)) |
Doxygen Example of Macro.
| #define DOXYGEN_EXAMPLE_CONST_A 100 |
Description of macro const A
| #define DOXYGEN_EXAMPLE_CONST_B 200 |
Description of macro const B
| #define DOXYGEN_EXAMPLE_ABS | ( | x | ) | (((x)>0)?(x):-(x)) |
Computes the absolute value of its argument x.
| [in] | x | input value. |