2020-07-03 18:35:02 +02:00
|
|
|
/*
|
|
|
|
* © 2020, Chris Harlow. All rights reserved.
|
|
|
|
*
|
|
|
|
* This file is part of Asbelos DCC API
|
|
|
|
*
|
|
|
|
* This is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* It is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with CommandStation. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2020-06-04 21:55:18 +02:00
|
|
|
#ifndef DCCEXParser_h
|
|
|
|
#define DCCEXParser_h
|
2020-06-12 20:56:40 +02:00
|
|
|
#include <Arduino.h>
|
2020-06-18 20:36:37 +02:00
|
|
|
|
2020-08-01 17:32:16 +02:00
|
|
|
typedef void (*FILTER_CALLBACK)(Print * stream, byte & opcode, byte & paramCount, int p[]);
|
2020-09-26 11:54:11 +02:00
|
|
|
typedef void (*AT_COMMAND_CALLBACK)(const byte * command);
|
2020-06-18 20:36:37 +02:00
|
|
|
|
2020-06-04 21:55:18 +02:00
|
|
|
struct DCCEXParser
|
2020-05-25 14:38:18 +02:00
|
|
|
{
|
2020-06-11 14:35:16 +02:00
|
|
|
DCCEXParser();
|
2020-08-01 17:32:16 +02:00
|
|
|
void loop(Stream & stream);
|
|
|
|
void parse(Print * stream, byte * command, bool blocking);
|
2020-06-12 15:28:35 +02:00
|
|
|
void flush();
|
2020-06-18 20:36:37 +02:00
|
|
|
static void setFilter(FILTER_CALLBACK filter);
|
2020-09-26 11:54:11 +02:00
|
|
|
static void setAtCommandCallback(AT_COMMAND_CALLBACK filter);
|
2020-06-18 20:36:37 +02:00
|
|
|
static const int MAX_PARAMS=10; // Must not exceed this
|
|
|
|
|
2020-05-25 14:38:18 +02:00
|
|
|
private:
|
2020-06-10 18:31:26 +02:00
|
|
|
|
|
|
|
static const int MAX_BUFFER=50; // longest command sent in
|
|
|
|
byte bufferLength=0;
|
|
|
|
bool inCommandPayload=false;
|
2020-06-29 12:37:05 +02:00
|
|
|
byte buffer[MAX_BUFFER+2];
|
|
|
|
int splitValues( int result[MAX_PARAMS], const byte * command);
|
2020-06-11 14:35:16 +02:00
|
|
|
|
2020-08-01 17:32:16 +02:00
|
|
|
bool parseT(Print * stream, int params, int p[]);
|
|
|
|
bool parseZ(Print * stream, int params, int p[]);
|
|
|
|
bool parseS(Print * stream, int params, int p[]);
|
|
|
|
bool parsef(Print * stream, int params, int p[]);
|
2020-09-10 14:09:32 +02:00
|
|
|
bool parseD(Print * stream, int params, int p[]);
|
2020-06-10 18:31:26 +02:00
|
|
|
|
2020-06-07 14:48:42 +02:00
|
|
|
|
|
|
|
static bool stashBusy;
|
2020-07-01 17:58:48 +02:00
|
|
|
|
2020-08-01 17:32:16 +02:00
|
|
|
static Print * stashStream;
|
2020-06-10 18:31:26 +02:00
|
|
|
static int stashP[MAX_PARAMS];
|
2020-08-01 17:32:16 +02:00
|
|
|
bool stashCallback(Print * stream, int p[MAX_PARAMS]);
|
2020-06-07 14:48:42 +02:00
|
|
|
static void callback_W(int result);
|
|
|
|
static void callback_B(int result);
|
|
|
|
static void callback_R(int result);
|
2020-09-20 01:59:07 +02:00
|
|
|
static void callback_Rloco(int result);
|
2020-09-18 01:04:42 +02:00
|
|
|
static void callback_Vbit(int result);
|
|
|
|
static void callback_Vbyte(int result);
|
2020-06-18 20:36:37 +02:00
|
|
|
static FILTER_CALLBACK filterCallback;
|
2020-09-26 11:54:11 +02:00
|
|
|
static AT_COMMAND_CALLBACK atCommandCallback;
|
2020-06-22 11:54:57 +02:00
|
|
|
static void funcmap(int cab, byte value, byte fstart, byte fstop);
|
2020-08-01 17:32:16 +02:00
|
|
|
|
2020-05-25 14:38:18 +02:00
|
|
|
};
|
2020-06-03 15:26:49 +02:00
|
|
|
|
2020-05-27 10:40:12 +02:00
|
|
|
#endif
|