From c79e01056ea350c66fa0439d19401fff8d1fe3c5 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 5f0cad2..e81cb04 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 }