1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-12-24 21:21:24 +01:00

Merge branch 'devel' into devel-esp32boost

This commit is contained in:
Harald Barth 2023-11-11 18:26:07 +01:00
commit b3ba647b09

View File

@ -123,7 +123,7 @@ void RMFT2::ComandFilter(Print * stream, byte & opcode, byte & paramCount, int16
case 'J': // throttle info commands case 'J': // throttle info commands
// This entire code block is compiled out if FEATURE_ROUTESTATE macros not used // This entire code block is compiled out if FEATURE_ROUTESTATE macros not used
if (paramCount<1) return; if (paramCount<1) return;
switch(p[0]) switch(p[0]) {
case HASH_KEYWORD_A: // <JA> returns automations/routes case HASH_KEYWORD_A: // <JA> returns automations/routes
if (paramCount==1) {// <JA> if (paramCount==1) {// <JA>
StringFormatter::send(stream, F("<jA")); StringFormatter::send(stream, F("<jA"));
@ -151,6 +151,9 @@ void RMFT2::ComandFilter(Print * stream, byte & opcode, byte & paramCount, int16
return; return;
} }
break; break;
default:
break;
}
default: // other commands pass through default: // other commands pass through
break; break;
} }