Files
UtilitechAS.amsreader-firmware/src/ams/LlcParser.cpp
2022-06-12 09:46:20 +02:00

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;
}