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