1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2025-04-20 20:21:18 +02:00

idle packet count without checksum

This commit is contained in:
Harald Barth 2025-04-18 23:48:18 +02:00
parent 8ac61b88d4
commit c79e01056e

View File

@ -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
}