1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2025-07-31 03:13:45 +02:00

WifiInterface compiles

Basic logic compiles... untested
This commit is contained in:
Asbelos
2020-06-13 09:36:10 +01:00
parent 0a60a36d30
commit 2a36ad365c
7 changed files with 241 additions and 21 deletions

View File

@@ -5,6 +5,7 @@ struct DCCEXParser
{
DCCEXParser();
void loop(Stream & pstream);
void parse(Print & stream, const char * command);
void flush();
private:
@@ -14,7 +15,6 @@ struct DCCEXParser
bool inCommandPayload=false;
char buffer[MAX_BUFFER+2];
int splitValues( int result[MAX_PARAMS]);
void parse(Print & stream, const char * command);
bool parseT(Print & stream, int params, int p[]);
bool parseZ(Print & stream, int params, int p[]);