forked from cterwilliger/VeDirectFrameHandler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVeDirectFrameHandler.cpp
More file actions
184 lines (174 loc) · 4.72 KB
/
Copy pathVeDirectFrameHandler.cpp
File metadata and controls
184 lines (174 loc) · 4.72 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/* framehandler.cpp
*
* Arduino library to read from Victron devices using VE.Direct protocol.
* Derived from Victron framehandler reference implementation.
*
* 2020.05.05 - 0.2 - initial release
*
*/
#include <Arduino.h>
#include "framehandler.h"
#define MODULE "VE.Frame" // Victron seems to use this to find out where logging messages were generated
// The name of the record that contains the checksum.
static constexpr char checksumTagName[] = "CHECKSUM";
VeDirectFrameHandler::VeDirectFrameHandler() :
//mStop(false), // don't know what Victron uses this for, not using
mState(IDLE),
mChecksum(0),
mTextPointer(0),
tempName(),
tempValue(),
frameIndex(0),
veName(),
veValue(),
veEnd(0)
{
}
/*
* rxData
* This function is called by the application which passes a byte of serial data
* It is unchanged from Victron's example code
*/
void VeDirectFrameHandler::rxData(uint8_t inbyte)
{
//if (mStop) return;
if ( (inbyte == ':') && (mState != CHECKSUM) ) {
mState = RECORD_HEX;
}
if (mState != RECORD_HEX) {
mChecksum += inbyte;
}
inbyte = toupper(inbyte);
switch(mState) {
case IDLE:
/* wait for \n of the start of an record */
switch(inbyte) {
case '\n':
mState = RECORD_BEGIN;
break;
case '\r': /* Skip */
default:
break;
}
break;
case RECORD_BEGIN:
mTextPointer = mName;
*mTextPointer++ = inbyte;
mState = RECORD_NAME;
break;
case RECORD_NAME:
// The record name is being received, terminated by a \t
switch(inbyte) {
case '\t':
// the Checksum record indicates a EOR
if ( mTextPointer < (mName + sizeof(mName)) ) {
*mTextPointer = 0; /* Zero terminate */
if (strcmp(mName, checksumTagName) == 0) {
mState = CHECKSUM;
break;
}
}
mTextPointer = mValue; /* Reset value pointer */
mState = RECORD_VALUE;
break;
default:
// add byte to name, but do no overflow
if ( mTextPointer < (mName + sizeof(mName)) )
*mTextPointer++ = inbyte;
break;
}
break;
case RECORD_VALUE:
// The record value is being received. The \r indicates a new record.
switch(inbyte) {
case '\n':
// forward record, only if it could be stored completely
if ( mTextPointer < (mValue + sizeof(mValue)) ) {
*mTextPointer = 0; // make zero ended
textRxEvent(mName, mValue);
}
mState = RECORD_BEGIN;
break;
case '\r': /* Skip */
break;
default:
// add byte to value, but do no overflow
if ( mTextPointer < (mValue + sizeof(mValue)) )
*mTextPointer++ = inbyte;
break;
}
break;
case CHECKSUM:
{
bool valid = mChecksum == 0;
if (!valid)
logE(MODULE,"[CHECKSUM] Invalid frame");
mChecksum = 0;
mState = IDLE;
frameEndEvent(valid);
break;
}
case RECORD_HEX:
if (hexRxEvent(inbyte)) {
mChecksum = 0;
mState = IDLE;
}
break;
}
}
/*
* textRxEvent
* This function is called every time a new name/value is successfully parsed. It writes the values to the temporary buffer.
*/
void VeDirectFrameHandler::textRxEvent(char * mName, char * mValue) {
strcpy(tempName[frameIndex], mName); // copy name to temporary buffer
strcpy(tempValue[frameIndex], mValue); // copy value to temporary buffer
frameIndex++;
}
/*
* frameEndEvent
* This function is called at the end of the received frame. If the checksum is valid, the temp buffer is read line by line.
* If the name exists in the public buffer, the new value is copied to the public buffer. If not, a new name/value entry
* is created in the public buffer.
*/
void VeDirectFrameHandler::frameEndEvent(bool valid) {
if ( valid ) {
for ( int i = 0; i < frameIndex; i++ ) { // read each name already in the temp buffer
bool nameExists = false;
for ( int j = 0; j <= veEnd; j++ ) { // compare to existing names in the public buffer
if ( strcmp(tempName[i], veName[j]) == 0 ) {
strcpy(veValue[j], tempValue[i]); // overwrite tempValue in the public buffer
nameExists = true;
break;
}
}
if ( !nameExists ) {
strcpy(veName[veEnd], tempName[i]); // write new Name to public buffer
strcpy(veValue[veEnd], tempValue[i]); // write new Value to public buffer
veEnd++; // increment end of public buffer
if ( veEnd >= buffLen ) { // stop any buffer overrun
veEnd = buffLen - 1;
}
}
}
}
frameIndex = 0; // reset frame
}
/*
* logE
* This function included for continuity and possible future use.
*/
void VeDirectFrameHandler::logE(char * module, char * error) {
//Serial.print("MODULE: ");
//Serial.println(module);
//Serial.print("ERROR: ");
//Serial.println(error);
return;
}
/*
* hexRxEvent
* This function included for continuity and possible future use.
*/
bool VeDirectFrameHandler::hexRxEvent(uint8_t inbyte) {
return true; // stubbed out for future
}