add consolePrintf for C style code

This commit is contained in:
Kevin Hester
2021-03-10 15:21:30 +08:00
parent 772f2a15ff
commit 58715f454c
2 changed files with 13 additions and 2 deletions

View File

@@ -32,4 +32,7 @@ class SerialConsole : public StreamAPI, public RedirectablePrint
virtual void onConnectionChanged(bool connected);
};
// A simple wrapper to allow non class aware code write to the console
void consolePrintf(const char *format, ...);
extern SerialConsole console;