-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvesc_can_bus_arduino.cpp
136 lines (120 loc) · 3.81 KB
/
vesc_can_bus_arduino.cpp
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
#include "vesc_can_bus_arduino.h"
#include <Arduino.h>
#include <CAN.h>
void CANV::initialize() {
CAN.setPins(CAN_RX, CAN_TX);
// start the CAN bus at 250 kbps
if (!CAN.begin(250E3)) {
Serial.println("Starting CAN failed!");
while (1);
}
}
void CANV::spin() {
get_frame();
if (rxId == 0x090A) { //
dutyCycleNow = process_data_frame_vesc('D', rxBuf[6], rxBuf[7]);
avgMotorCurrent = process_data_frame_vesc('C', rxBuf[4], rxBuf[5]);
unsigned char erpmvals[4];
erpmvals[0] = rxBuf[3];
erpmvals[1] = rxBuf[2];
erpmvals[2] = rxBuf[1];
erpmvals[3] = rxBuf[0];
erpm = *(long *)erpmvals;
//need to add in the rpm conversion function for 4 byte values
}
if (rxId == 0x0F0A) {
unsigned char WHvals[4];
WHvals[0] = rxBuf[3];
WHvals[1] = rxBuf[2];
WHvals[2] = rxBuf[1];
WHvals[3] = rxBuf[0];
WattHours = *(long *)WHvals;
}
if (rxId == 0x100A) { //
tempFET = process_data_frame_vesc('F', rxBuf[0], rxBuf[1]);
tempMotor = process_data_frame_vesc('T', rxBuf[2], rxBuf[3]);
avgInputCurrent = process_data_frame_vesc('I', rxBuf[4], rxBuf[5]);
}
if (rxId == 0x1B0A) {
char receivedByte[4], *p;
sprintf(receivedByte, "%02X%02X", rxBuf[4], rxBuf[5]);
//Serial.println("received byte== ");
//Serial.println(receivedByte);
inpVoltage = hex2int(receivedByte) * 0.1;
}
//print_raw_can_data(); // uncomment to see raw can messages
}
void CANV::print_raw_can_data() {
int len = 8;
sprintf(msgString, "Standard ID: 0x%.3lX DLC: %1d Data:", rxId, len);
Serial.print(msgString);
for (byte i = 0; i < len; i++) {
sprintf(msgString, " 0x%.2X", rxBuf[i]);
Serial.print(msgString);
}
Serial.println();
}
float CANV::process_data_frame_vesc(char datatype, unsigned char byte1, unsigned char byte2) {
char receivedByte[4], *p;
sprintf(receivedByte, "%02X%02X", byte1, byte2);
float output = hex2int(receivedByte);
switch (datatype) {
case 'D': output *= 0.001; break; //dutyCycleNow
case 'C': output *= 0.1; break; //avgMotorCurrent
case 'F': output *= 0.1; break; //tempFET
case 'T': output *= 0.1; break; //tempMotor
case 'I': output *= 0.1; break; //avgInputCurrent
case 'V': output *= 0.1; break; //inpVoltage
}
return output;
}
int CANV::hex2int(char buf[])
{
return (short) strtol(buf, NULL, 16);
}
void CANV::vesc_set_duty(float duty) {
uint32_t set_value = duty * 100000;
uint8_t buffer[4];
buffer[0] = (set_value >> 24) & 0xFF;
buffer[1] = (set_value >> 16) & 0xFF;
buffer[2] = (set_value >> 8 ) & 0xFF;
buffer[3] = set_value & 0xFF;
bool sndStat = sendpacket(0x0000000A, 1, 4, buffer);
}
void CANV::vesc_set_current(float current) {
uint32_t set_value = current * 1000;
uint8_t buffer[4];
buffer[0] = (set_value >> 24) & 0xFF;
buffer[1] = (set_value >> 16) & 0xFF;
buffer[2] = (set_value >> 8 ) & 0xFF;
buffer[3] = set_value & 0xFF;
//byte sndStat = CAN0.sendMsgBuf(0x0000010A, 1, 4, buffer);
bool sndStat = sendpacket(0x0000010A, 1, 4, buffer);
}
void CANV::vesc_set_erpm(float erpm) {
uint32_t set_value = erpm;
uint8_t buffer[4];
buffer[0] = (set_value >> 24) & 0xFF;
buffer[1] = (set_value >> 16) & 0xFF;
buffer[2] = (set_value >> 8 ) & 0xFF;
buffer[3] = set_value & 0xFF;
//byte sndStat = CAN0.sendMsgBuf(0x0000030A, 1, 4, buffer);
bool sndStat = sendpacket(0x0000030A, 1, 4, buffer);
}
void CANV::get_frame() {
//CAN0.readMsgBuf(&rxId, &len, rxBuf); // Read data: len = data length, buf = data byte(s)
len1=CAN.parsePacket();
if(len1){
len=CAN.packetDlc();
rxId=CAN.packetId();
for(int i = 0; i<CAN.packetDlc(); i++){
rxBuf[i] = CAN.read();
}
}
}
bool CANV::sendpacket(uint32_t id, uint8_t ext, size_t len, uint8_t buf[]){
CAN.beginExtendedPacket(id, len);
CAN.write(buf, len);
CAN.endPacket();
return 1;
}