Support for ERT SCM+ meter protocol

This commit is contained in:
Mark Thompson 2023-04-23 01:26:37 -05:00 committed by GitHub
parent b72c765911
commit 697876d86a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,9 +38,10 @@ namespace format {
std::string type(Packet::Type value) {
switch(value) {
default:
case Packet::Type::Unknown: return "???";
case Packet::Type::IDM: return "IDM";
case Packet::Type::SCM: return "SCM";
case Packet::Type::Unknown: return "??? ";
case Packet::Type::IDM: return "IDM ";
case Packet::Type::SCM: return "SCM ";
case Packet::Type::SCMPLUS: return "SCM+";
}
}