progress #372
This commit is contained in:
parent
1adb72a2d8
commit
895d7111ea
|
@ -72,6 +72,7 @@
|
|||
#include "malfunction_central.h"
|
||||
#include "console_io.h"
|
||||
#include "crc.h"
|
||||
#include "fl_protocol.h"
|
||||
|
||||
#include <string.h>
|
||||
#include "engine_configuration.h"
|
||||
|
@ -469,6 +470,9 @@ void runBinaryProtocolLoop(ts_channel_s *tsChannel, bool isConsoleRedirect) {
|
|||
onDataArrived();
|
||||
|
||||
if (isFirstByte) {
|
||||
if (isStartOfFLProtocol(firstByte)) {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
isFirstByte = false;
|
||||
|
|
|
@ -3,5 +3,6 @@ CONSOLESRC =
|
|||
|
||||
CONSOLE_SRC_CPP = $(PROJECT_DIR)/console/status_loop.cpp \
|
||||
$(PROJECT_DIR)/console/console_io.cpp \
|
||||
$(PROJECT_DIR)/console/fl_binary/fl_protocol.cpp \
|
||||
$(PROJECT_DIR)/console/eficonsole.cpp
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* @file ft_protocol.h
|
||||
* @file fl_protocol.h
|
||||
*
|
||||
* @date Mar 14, 2017
|
||||
* @author Andrey Belomutskiy, (c) 2012-2017
|
||||
|
|
Loading…
Reference in New Issue