From a94b50ab12a3479b361635d512fc2e25cb4920a3 Mon Sep 17 00:00:00 2001 From: proddy Date: Thu, 3 Oct 2019 13:53:18 +0200 Subject: [PATCH] show Junkers or Buderus in `info` --- src/ems-esp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ems-esp.cpp b/src/ems-esp.cpp index 253adad12..b18c23153 100644 --- a/src/ems-esp.cpp +++ b/src/ems-esp.cpp @@ -459,7 +459,7 @@ void showInfo() { myDebug_P(PSTR("\n%sEMS Bus stats:%s"), COLOR_BOLD_ON, COLOR_BOLD_OFF); if (ems_getBusConnected()) { - myDebug_P(PSTR(" Bus is connected")); + myDebug_P(PSTR(" Bus is connected, protocol: %s"), ((EMS_Sys_Status.emsIDMask == 0x80) ? "Junkers HT3" : "Buderus")); myDebug_P(PSTR(" Rx: # successful read requests=%d, # CRC errors=%d"), EMS_Sys_Status.emsRxPgks, EMS_Sys_Status.emxCrcErr); if (ems_getTxCapable()) {