auto-sync
This commit is contained in:
parent
8f5d9bb02b
commit
693f71f4e1
|
@ -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));
|
||||
|
|
Loading…
Reference in New Issue