mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-01-17 00:52:12 +00:00
12 lines
193 B
C++
12 lines
193 B
C++
/**
|
|
* @copyright Utilitech AS 2023
|
|
* License: Fair Source
|
|
*
|
|
*/
|
|
|
|
#include "LlcParser.h"
|
|
|
|
int8_t LLCParser::parse(uint8_t *buf, DataParserContext &ctx) {
|
|
ctx.length -= 3;
|
|
return 3;
|
|
} |