-
Notifications
You must be signed in to change notification settings - Fork 8
/
xPL_Message.h
74 lines (59 loc) · 2.39 KB
/
xPL_Message.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
* xPL.Arduino v0.1, xPL Implementation for Arduino
*
* This code is parsing a xPL message stored in 'received' buffer
* - isolate and store in 'line' buffer each part of the message -> detection of EOL character (DEC 10)
* - analyse 'line', function of its number and store information in xpl_header memory
* - check for each step if the message respect xPL protocol
* - parse each command line
*
* Copyright (C) 2012 [email protected], [email protected]
* Original version by [email protected]
*
* This program 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 2
* of the License, or (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef xPLMessage_h
#define xPLMessage_h
#include "Arduino.h"
#include "xPL_utils.h"
#define XPL_CMND 1
#define XPL_STAT 2
#define XPL_TRIG 3
#define XPL_MESSAGE_BUFFER_MAX 256 // going over 256 would mean changing index from byte to int
#define XPL_MESSAGE_COMMAND_MAX 10
class xPL_Message
{
public:
short type; // 1=cmnd, 2=stat, 3=trig
short hop; // Hop count
struct_id source; // source identification
struct_id target; // target identification
struct_xpl_schema schema;
struct_command *command;
byte command_count;
bool AddCommand_P(const PROGMEM char *,const PROGMEM char *);
bool AddCommand(char*, char*);
xPL_Message();
~xPL_Message();
char *toString();
bool IsSchema(char*, char*);
bool IsSchema_P(const PROGMEM char*, const PROGMEM char*);
void SetSource(char *,char *,char *); // define my source
void SetTarget_P(const PROGMEM char *,const PROGMEM char * = NULL,const PROGMEM char * = NULL);
void SetSchema_P(const PROGMEM char *,const PROGMEM char *);
private:
bool CreateCommand();
};
#endif