loconet simulation: added LongAck for ImmPacket

Dieser Commit ist enthalten in:
Reinder Feenstra 2023-06-05 17:32:55 +02:00
Ursprung a51bf66762
Commit 7b7e27df66

Datei anzeigen

@ -3,7 +3,7 @@
*
* This file is part of the traintastic source code.
*
* Copyright (C) 2022 Reinder Feenstra
* Copyright (C) 2022-2023 Reinder Feenstra
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@ -203,6 +203,10 @@ bool SimulationIOHandler::send(const Message& message)
}
}
}
else if(isSignatureMatch<ImmPacket>(message))
{
reply(LongAck(message.opCode, 0x7F)); // accept, not limited
}
break;
}
case OPC_WR_SL_DATA: