This commit is contained in:
rusefi 2017-03-15 22:06:57 -05:00
parent 895d7111ea
commit 934a29c509
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
/*
* @file fl_protocol.cpp
*
* @date Mar 15, 2017
* @author Andrey Belomutskiy, (c) 2012-2017
*/
#include "fl_protocol.h"
bool isStartOfFLProtocol(uint8_t firstByte) {
return firstByte == START_TAG;
}