mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-12-23 21:01:25 +01:00
3rd arg of Z is bitfield
This commit is contained in:
parent
7206e46273
commit
ec2295219d
@ -578,12 +578,10 @@ bool DCCEXParser::parseZ(Print *stream, int16_t params, int16_t p[])
|
||||
}
|
||||
return true;
|
||||
|
||||
case 3: // <Z ID PIN INVERT>
|
||||
if (p[0] < 0)
|
||||
return false;
|
||||
if (p[1] > 255 || p[1] < 0)
|
||||
return false;
|
||||
if (!(p[2] == 0 || p[2] == 1))
|
||||
case 3: // <Z ID PIN IFLAG>
|
||||
if (p[0] < 0 ||
|
||||
p[1] > 255 || p[1] < 0 ||
|
||||
p[2] < 0 || p[2] > 7 )
|
||||
return false;
|
||||
if (!Output::create(p[0], p[1], p[2], 1))
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user