auto-sync

This commit is contained in:
rusEfi 2015-03-08 21:05:36 -05:00
parent fc213cf03a
commit 8c9a3e69ff
3 changed files with 6 additions and 1 deletions

View File

@ -366,7 +366,7 @@ void updateDevConsoleState(Engine *engine) {
printWave(&logger);
#endif
printLine(&logger);
scheduleLogging(&logger);
}
#if EFI_PROD_CODE

View File

@ -14,6 +14,10 @@
#include "pin_repository.h"
#endif
// that's hex for "~\n", see
#define BINARY_SWITCH_TAG 0x7e0d
#define BINARY_COMMAND "~"
#define PROTOCOL "001"
#define TS_SIGNATURE "MShift v0.01"

View File

@ -8,5 +8,6 @@
#define UTIL_LOGGINGCENTRAL_H_
void initLoggingCentral(void);
char * swapOutputBuffers(int *actualOutputBufferSize);
#endif /* UTIL_LOGGINGCENTRAL_H_ */