mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-03-12 05:25:24 +00:00
7 lines
163 B
C++
7 lines
163 B
C++
#include "LlcParser.h"
|
|
|
|
int8_t LLCParser::parse(uint8_t *buf, DataParserContext &ctx) {
|
|
LLCHeader* llc = (LLCHeader*) buf;
|
|
ctx.length -= 3;
|
|
return 3;
|
|
} |