From 0df21a784341135fabd98816790506b14c789aa1 Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Fri, 29 Aug 2025 10:45:48 +0200 Subject: [PATCH] do not mention fuse in board details --- src/core/system.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/system.cpp b/src/core/system.cpp index 4c0fc2b97..0685a6ac8 100644 --- a/src/core/system.cpp +++ b/src/core/system.cpp @@ -2101,7 +2101,7 @@ String System::getBBQKeesGatewayDetails(uint8_t detail) { break; } return gw.reg ? String(mfg[gw.mfg]) + " " + String(model[gw.model]) + " rev." + String(gw.rev_major) + "." + String(gw.rev_minor) + "/" - + String(2000 + gw.year) + (gw.month < 10 ? "0" : "") + String(gw.month) + String(gw.no) + " (fuse 0x" + String(gw.reg, 16) + ")" + + String(2000 + gw.year) + (gw.month < 10 ? "0" : "") + String(gw.month) + String(gw.no) : ""; #else return "";