mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-23 16:16:13 +01:00
Z21: report the (unchanged) loco mode back after every attempted change
This commit is contained in:
parent
bc8ab26b30
commit
814d1045ba
|
@ -852,14 +852,26 @@ bool Z21Throttle::parse(byte *networkPacket, int len) {
|
||||||
done = true;
|
done = true;
|
||||||
break;
|
break;
|
||||||
case HEADER_LAN_GET_LOCOMODE:
|
case HEADER_LAN_GET_LOCOMODE:
|
||||||
if (Diag::Z21THROTTLEVERBOSE) DIAG(F("%d GET LOCOMODE"), this->clientid);
|
{
|
||||||
|
if (Diag::Z21THROTTLEVERBOSE) {
|
||||||
|
uint16_t addr = (Data[0] << 8) + Data[1];
|
||||||
|
DIAG(F("%d GET LOCOMODE %d"), this->clientid, addr);
|
||||||
|
}
|
||||||
notifyLocoMode(Data[0], Data[1]); // big endian here, but resend the same as received, so no problem.
|
notifyLocoMode(Data[0], Data[1]); // big endian here, but resend the same as received, so no problem.
|
||||||
done = true;
|
done = true;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case HEADER_LAN_SET_LOCOMODE:
|
case HEADER_LAN_SET_LOCOMODE:
|
||||||
if (Diag::Z21THROTTLEVERBOSE) DIAG(F("%d SET LOCOMODE"), this->clientid);
|
{
|
||||||
|
// as we currently can not change loco mode, nothing to do
|
||||||
|
if (Diag::Z21THROTTLEVERBOSE) {
|
||||||
|
uint16_t addr = (Data[0] << 8) + Data[1];
|
||||||
|
DIAG(F("%d SET LOCOMODE %d"), this->clientid, addr);
|
||||||
|
}
|
||||||
|
notifyLocoMode(Data[0], Data[1]); // big endian here, but resend the same as received, so no problem.
|
||||||
done = true;
|
done = true;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case HEADER_LAN_GET_HWINFO:
|
case HEADER_LAN_GET_HWINFO:
|
||||||
if (Diag::Z21THROTTLEVERBOSE) DIAG(F("%d GET HWINFO"), this->clientid);
|
if (Diag::Z21THROTTLEVERBOSE) DIAG(F("%d GET HWINFO"), this->clientid);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user