forked from collin80/TeslaBMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BMSUtil.h
96 lines (86 loc) · 2.95 KB
/
BMSUtil.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#include <Arduino.h>
#include "Logger.h"
class BMSUtil {
public:
static uint8_t genCRC(uint8_t *input, int lenInput)
{
uint8_t generator = 0x07;
uint8_t crc = 0;
for (int x = 0; x < lenInput; x++)
{
crc ^= input[x]; /* XOR-in the next input byte */
for (int i = 0; i < 8; i++)
{
if ((crc & 0x80) != 0)
{
crc = (uint8_t)((crc << 1) ^ generator);
}
else
{
crc <<= 1;
}
}
}
return crc;
}
static void sendData(uint8_t *data, uint8_t dataLen, bool isWrite)
{
uint8_t orig = data[0];
uint8_t addrByte = data[0];
if (isWrite) addrByte |= 1;
SERIAL.write(addrByte);
SERIAL.write(&data[1], dataLen - 1); //assumes that there are at least 2 bytes sent every time. There should be, addr and cmd at the least.
data[0] = addrByte;
if (isWrite) SERIAL.write(genCRC(data, dataLen));
if (Logger::isDebug())
{
SERIALCONSOLE.print("Sending: ");
SERIALCONSOLE.print(addrByte, HEX);
SERIALCONSOLE.print(" ");
for (int x = 1; x < dataLen; x++) {
SERIALCONSOLE.print(data[x], HEX);
SERIALCONSOLE.print(" ");
}
if (isWrite) SERIALCONSOLE.print(genCRC(data, dataLen), HEX);
SERIALCONSOLE.println();
}
data[0] = orig;
}
static int getReply(uint8_t *data, int maxLen)
{
int numBytes = 0;
if (Logger::isDebug()) SERIALCONSOLE.print("Reply: ");
while (SERIAL.available() && numBytes < maxLen)
{
data[numBytes] = SERIAL.read();
if (Logger::isDebug()) {
SERIALCONSOLE.print(data[numBytes], HEX);
SERIALCONSOLE.print(" ");
}
numBytes++;
}
if (maxLen == numBytes)
{
while (SERIAL.available()) SERIAL.read();
}
if (Logger::isDebug()) SERIALCONSOLE.println();
return numBytes;
}
//Uses above functions to send data then get the response. Will auto retry if response not
//the expected return length. This helps to alleviate any comm issues. The Due cannot exactly
//match the correct comm speed so sometimes there are data glitches.
static int sendDataWithReply(uint8_t *data, uint8_t dataLen, bool isWrite, uint8_t *retData, int retLen)
{
int attempts = 1;
int returnedLength;
while (attempts < 4)
{
sendData(data, dataLen, isWrite);
delay(2 * ((retLen / 8) + 1));
returnedLength = getReply(retData, retLen);
if (returnedLength == retLen) return returnedLength;
attempts++;
}
return returnedLength; //failed to get a proper response.
}
};