1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-26 17:46:14 +01:00

guess value should be 0 not random bute in RAM

This commit is contained in:
Harald Barth 2022-05-03 08:38:35 +02:00
parent e721457844
commit ac32cd5528

View File

@ -380,7 +380,7 @@ void DCCEXParser::parse(Print *stream, byte *com, RingStream * ringStream)
{ // <R CV> -- uses verify callback
if (!stashCallback(stream, p, ringStream))
break;
DCC::verifyCVByte(p[0], p[1], callback_Vbyte);
DCC::verifyCVByte(p[0], 0, callback_Vbyte);
return;
}
if (params == 3)