Support for ERT SCM+ meter protocol

This commit is contained in:
Mark Thompson 2023-04-23 01:31:45 -05:00 committed by GitHub
parent fe1d296b48
commit 6201be82ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,6 +45,7 @@ public:
Unknown = 0,
IDM = 1,
SCM = 2,
SCMPLUS = 3,
};
Packet(
@ -80,7 +81,7 @@ private:
const Reader reader_;
const Type type_;
bool crc_ok_idm() const;
bool crc_ok_ccitt() const;
bool crc_ok_scm() const;
};