1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-26 09:36:13 +01:00

Undo callback

This commit is contained in:
peteGSX 2023-08-31 13:51:25 +10:00
parent a0c1ad182c
commit 9fa213e198
2 changed files with 0 additions and 6 deletions

View File

@ -1226,8 +1226,3 @@ void DCCEXParser::callback_Wloco(int16_t result)
StringFormatter::send(getAsyncReplyStream(), F("<w %d>\n"), result);
commitAsyncReplyStream();
}
void DCCEXParser::callback_Imoving(bool moving) {
if (!moving) StringFormatter::send(getAsyncReplyStream(), F("<i>"));
commitAsyncReplyStream();
}

View File

@ -72,7 +72,6 @@ struct DCCEXParser
static void callback_Wloco(int16_t result);
static void callback_Vbit(int16_t result);
static void callback_Vbyte(int16_t result);
static void callback_Imoving(bool moving);
static FILTER_CALLBACK filterCallback;
static FILTER_CALLBACK filterRMFTCallback;
static AT_COMMAND_CALLBACK atCommandCallback;