1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-27 01:56: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 { // <R CV> -- uses verify callback
if (!stashCallback(stream, p, ringStream)) if (!stashCallback(stream, p, ringStream))
break; break;
DCC::verifyCVByte(p[0], p[1], callback_Vbyte); DCC::verifyCVByte(p[0], 0, callback_Vbyte);
return; return;
} }
if (params == 3) if (params == 3)