uc-sdk
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
BoardConsole.h
Go to the documentation of this file.
1 #ifndef __INEMO_CONSOLE_H__
2 #define __INEMO_CONSOLE_H__
3 
4 #include <stdarg.h>
5 
6 void BoardConsoleInit();
7 void BoardConsolePuts(const char * str);
8 void BoardConsolePutc(int);
9 void BoardConsolePrintf(const char * fmt, ...) __attribute__ ((format(printf, 1, 2)));
10 void BoardConsoleVPrintf(const char * fmt, va_list ap);
11 
12 #endif