1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-23 08:06:13 +01:00
CommandStation-EX/DCCEXParser.h
2020-06-04 20:55:18 +01:00

18 lines
455 B
C++

#ifndef DCCEXParser_h
#define DCCEXParser_h
struct DCCEXParser
{
static void parse(Stream & stream,const char * command);
private:
static bool parseT(Stream & stream, int params, int p[]);
static bool parseZ(Stream & stream, int params, int p[]);
static bool parseS(Stream & stream, int params, int p[]);
static const int MAX_PARAMS=10; // longest command sent in
};
#define BOARD_NAME "not yet configured"
#endif