From 90ee8ea7d813dd0fde6fcf0cf18dfdd4ac2a801b Mon Sep 17 00:00:00 2001 From: Harald Barth Date: Fri, 18 Apr 2025 23:48:18 +0200 Subject: [PATCH] idle packet count without checksum --- DCC.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DCC.cpp b/DCC.cpp index bcece68..5411610 100644 --- a/DCC.cpp +++ b/DCC.cpp @@ -763,8 +763,8 @@ void DCC::issueReminders() { if (loopStatus == 0 /*only needed if numLocos == 1 but we do not have a counter*/) { // insert idle packet in the speed packet loop to fullfill the *censored* // >5ms between packets to same decoder rule - const byte idlepacket[] = {0xFF, 0x00, 0xFF}; - DCCWaveform::mainTrack.schedulePacket(idlepacket, 3, 0); + const byte idlepacket[] = {0xFF, 0x00}; + DCCWaveform::mainTrack.schedulePacket(idlepacket, 2, 0); } reg = 0; // Go to start of table }