From 6201be82ea5e38b8628347cb8b4e21262a770312 Mon Sep 17 00:00:00 2001 From: Mark Thompson <129641948+NotherNgineer@users.noreply.github.com> Date: Sun, 23 Apr 2023 01:31:45 -0500 Subject: [PATCH] Support for ERT SCM+ meter protocol --- firmware/common/ert_packet.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/firmware/common/ert_packet.hpp b/firmware/common/ert_packet.hpp index fcdf8e33..90818421 100644 --- a/firmware/common/ert_packet.hpp +++ b/firmware/common/ert_packet.hpp @@ -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; };