mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-23 08:06:13 +01:00
Correct response to <JA 0>
This commit is contained in:
parent
f465020e93
commit
70fae16ab3
|
@ -265,16 +265,17 @@ void RMFT2::setTurnoutHiddenState(Turnout * t) {
|
||||||
char RMFT2::getRouteType(int16_t id) {
|
char RMFT2::getRouteType(int16_t id) {
|
||||||
for (int16_t i=0;;i+=2) {
|
for (int16_t i=0;;i+=2) {
|
||||||
int16_t rid= GETHIGHFLASHW(routeIdList,i);
|
int16_t rid= GETHIGHFLASHW(routeIdList,i);
|
||||||
if (rid==id) return 'R';
|
|
||||||
if (rid==0) break;
|
if (rid==0) break;
|
||||||
|
if (rid==id) return 'R';
|
||||||
}
|
}
|
||||||
for (int16_t i=0;;i+=2) {
|
for (int16_t i=0;;i+=2) {
|
||||||
int16_t rid= GETHIGHFLASHW(automationIdList,i);
|
int16_t rid= GETHIGHFLASHW(automationIdList,i);
|
||||||
if (rid==id) return 'A';
|
|
||||||
if (rid==0) break;
|
if (rid==0) break;
|
||||||
|
if (rid==id) return 'A';
|
||||||
}
|
}
|
||||||
return 'X';
|
return 'X';
|
||||||
}
|
}
|
||||||
|
|
||||||
// This filter intercepts <> commands to do the following:
|
// This filter intercepts <> commands to do the following:
|
||||||
// - Implement RMFT specific commands/diagnostics
|
// - Implement RMFT specific commands/diagnostics
|
||||||
// - Reject/modify JMRI commands that would interfere with RMFT processing
|
// - Reject/modify JMRI commands that would interfere with RMFT processing
|
||||||
|
|
|
@ -4,7 +4,8 @@
|
||||||
#include "StringFormatter.h"
|
#include "StringFormatter.h"
|
||||||
|
|
||||||
|
|
||||||
#define VERSION "4.2.46"
|
#define VERSION "4.2.47"
|
||||||
|
// 4.2.47 - Correct response to <JA 0>
|
||||||
// 4.2.46 - Support boards with inverted fault pin
|
// 4.2.46 - Support boards with inverted fault pin
|
||||||
// 4.2.45 - Add ONCLOCKMINS to FastClock to allow hourly repeat events
|
// 4.2.45 - Add ONCLOCKMINS to FastClock to allow hourly repeat events
|
||||||
// 4.2.44 - Add PowerShell installer EX-CommandStation-installer.exe
|
// 4.2.44 - Add PowerShell installer EX-CommandStation-installer.exe
|
||||||
|
|
Loading…
Reference in New Issue
Block a user