Output serial console data without buffering

raytac-diy
Thomas Göttgens 2022-09-21 15:34:48 +02:00 zatwierdzone przez GitHub
rodzic 140250ef03
commit 0b81a25fda
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -20,6 +20,7 @@ void consolePrintf(const char *format, ...)
va_start(arg, format);
console->vprintf(format, arg);
va_end(arg);
console->flush();
}
SerialConsole::SerialConsole() : StreamAPI(&Port), RedirectablePrint(&Port)