| Functions | |
| static void | debug (const char *format,...) | 
| Output a debug message.  More... | |
| static void | debug_if (int condition, const char *format,...) | 
| Conditionally output a debug message.  More... | |
| 
 | static | 
Output a debug message.
| format | printf-style format string, followed by variables | 
Definition at line 44 of file mbed_debug.h.
| 
 | static | 
Conditionally output a debug message.
NOTE: If the condition is constant false (== 0) and the compiler optimization level is greater than 0, then the whole function will be compiled away.
| condition | output only if condition is true (!= 0) | 
| format | printf-style format string, followed by variables | 
Definition at line 63 of file mbed_debug.h.