blob: 75b970f36354bf5c16fcb9ac966979e4ef5d8f8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __MBED_CONSOLE_H__
#define __MBED_CONSOLE_H__
#include <stdarg.h>
void BoardConsoleInit();
void BoardConsolePuts(const char * str);
void BoardConsolePutc(int);
void BoardConsolePrintf(const char * fmt, ...) __attribute__ ((format(printf, 1, 2)));
void BoardConsoleVPrintf(const char * fmt, va_list ap);
#endif
|