uc-sdk
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
osdebug.h
Go to the documentation of this file.
1 #ifndef __OSDEBUG_H__
2 #define __OSDEBUG_H__
3 
4 #include <BoardConsole.h>
5 
6 void osDbgPrintf(const char * fmt, ...);
7 
8 #ifdef FULLDEBUG
9 #define DBGOUT osDbgPrintf
10 #else
11 #define DBGOUT(...)
12 #endif
13 
14 #endif