auto-sync

This commit is contained in:
rusEfi 2016-02-14 12:03:48 -05:00
parent 8f5d9bb02b
commit 693f71f4e1
1 changed files with 7 additions and 0 deletions

View File

@ -27,6 +27,8 @@
#include "rusEfiFunctionalTest.h"
#endif
EXTERN_ENGINE;
#if HAL_USE_SERIAL_USB || defined(__DOXYGEN__)
#include "usbcfg.h"
#include "usbconsole.h"
@ -187,6 +189,11 @@ static THD_FUNCTION(consoleThreadThreadEntryPoint, arg) {
binaryConsole.channel = (BaseChannel *) getConsoleChannel();
if (boardConfiguration->startConsoleInBinaryMode) {
// switch to binary protocol
runBinaryProtocolLoop(&binaryConsole, true);
}
while (true) {
efiAssertVoid(getRemainingStack(chThdSelf()) > 256, "lowstck#9e");
bool end = getConsoleLine((BaseSequentialStream*) getConsoleChannel(), consoleInput, sizeof(consoleInput));