From 48908c99a852b28b6de3b64f226d09b2b2cfaabd Mon Sep 17 00:00:00 2001 From: Harald Barth Date: Thu, 26 Jun 2025 22:32:12 +0200 Subject: [PATCH] remove broken debug code --- DCCDecoder.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/DCCDecoder.cpp b/DCCDecoder.cpp index fb61bda..1304367 100644 --- a/DCCDecoder.cpp +++ b/DCCDecoder.cpp @@ -42,7 +42,6 @@ bool DCCDecoder::parse(DCCPacket &p) { for (byte n = 0; n < p.len(); n++) checksum ^= d[n]; if (checksum) { // Result should be zero, if not it's an error! - digitalWrite(2,HIGH); DIAG(F("Checksum error")); return false; }