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

result should be as is (can be -1 to indicate fail)

This commit is contained in:
Harald Barth 2021-01-30 22:54:38 +01:00
parent 0b3e904ffb
commit 6cc5550927

View File

@ -791,7 +791,7 @@ void DCCEXParser::callback_R(int result)
void DCCEXParser::callback_Rloco(int result) void DCCEXParser::callback_Rloco(int result)
{ {
StringFormatter::send(stashStream, F("<r %d>"), result & 0x3FFF); StringFormatter::send(stashStream, F("<r %d>"), result);
stashBusy = false; stashBusy = false;
} }