mirror of https://github.com/arendst/Tasmota.git
6 lines
124 B
C++
6 lines
124 B
C++
|
#include "LlcParser.h"
|
||
|
|
||
|
int8_t LLCParser::parse(uint8_t *buf, DataParserContext &ctx) {
|
||
|
ctx.length -= 3;
|
||
|
return 3;
|
||
|
}
|