1
1
/* The MIT License (MIT)
2
2
*
3
- * Copyright (c) 2014 - 2020 , Andreas Merkle
3
+ * Copyright (c) 2014 - 2024 , Andreas Merkle
4
4
* http://www.blue-andi.de
5
5
6
6
*
26
26
27
27
#include < VSCP.h> // VSCP framework
28
28
#include < SPI.h> // SPI used for CAN controller communication
29
- #include < MCP2515 .h> // CAN controller driver
29
+ #include < mcp2515 .h> // CAN controller driver
30
30
31
31
// Create an instance of the VSCP framework
32
32
VSCP vscp;
33
33
34
+ // Create an instance of the CAN controller driver
35
+ MCP2515 mcp2515 (
36
+ 9 // Set CS (chip select) pin, note if you use a CAN BUS shield prior to V1.1 use pin 10!
37
+ );
38
+
34
39
// Node is in active state or not
35
40
static bool isActive = false ;
36
41
37
42
// Read a message from the transport layer, e.g. the CAN bus
38
43
// If no message is received return false, otherwise true.
39
44
bool transportRead (vscp_RxMessage * const rxMsg) {
40
45
41
- bool status = false ;
42
- CANMSG canMsg;
46
+ bool status = false ;
47
+ struct can_frame canMsg;
43
48
44
49
// Any CAN frame received?
45
- if (true == MCP2515::receiveCANMessage (&canMsg, 10 )) {
50
+ if (MCP2515::ERROR_OK == mcp2515. readMessage (&canMsg)) {
46
51
47
52
// Is it a extended CAN frame?
48
- if (true == canMsg.isExtendedAdrs ) {
53
+ if (0 != (( canMsg.can_id >> 31 ) & 0x01 ) ) {
49
54
50
55
unsigned char index = 0 ;
51
56
52
- rxMsg->vscpClass = (uint16_t )((canMsg.adrsValue >> 16 ) & 0x01ff );
53
- rxMsg->vscpType = (uint8_t )((canMsg.adrsValue >> 8 ) & 0x00ff );
54
- rxMsg->oAddr = (uint8_t )((canMsg.adrsValue >> 0 ) & 0x00ff );
55
- rxMsg->hardCoded = (uint8_t )((canMsg.adrsValue >> 25 ) & 0x0001 );
56
- rxMsg->priority = (VSCP_PRIORITY)((canMsg.adrsValue >> 26 ) & 0x0007 );
57
- rxMsg->dataSize = canMsg.dataLength ;
57
+ rxMsg->vscpClass = (uint16_t )((canMsg.can_id >> 16 ) & 0x01ff );
58
+ rxMsg->vscpType = (uint8_t )((canMsg.can_id >> 8 ) & 0x00ff );
59
+ rxMsg->oAddr = (uint8_t )((canMsg.can_id >> 0 ) & 0x00ff );
60
+ rxMsg->hardCoded = (uint8_t )((canMsg.can_id >> 25 ) & 0x0001 );
61
+ rxMsg->priority = (VSCP_PRIORITY)((canMsg.can_id >> 26 ) & 0x0007 );
62
+ rxMsg->dataSize = canMsg.can_dlc ;
58
63
59
64
// Protect against a buffer out of bounce access
60
65
if (VSCP_L1_DATA_SIZE < rxMsg->dataSize ) {
@@ -79,24 +84,23 @@ bool transportRead(vscp_RxMessage * const rxMsg) {
79
84
// If it fails to send the message return false, otherwise true.
80
85
bool transportWrite (vscp_TxMessage const * const txMsg) {
81
86
82
- bool status = false ;
83
- CANMSG canMsg;
84
- unsigned char index = 0 ;
85
- unsigned char retryCnt = 0 ;
86
-
87
- canMsg.isExtendedAdrs = true ;
88
-
89
- canMsg.adrsValue = (((uint32_t )txMsg->priority ) << 26 ) |
90
- (((uint32_t )txMsg->hardCoded ) << 25 ) |
91
- (((uint32_t )txMsg->vscpClass ) << 16 ) |
92
- (((uint32_t )txMsg->vscpType ) << 8 ) |
93
- txMsg->oAddr ;
94
-
95
- canMsg.rtr = 0 ;
96
-
97
- canMsg.dataLength = txMsg->dataSize ;
87
+ bool status = false ;
88
+ struct can_frame canMsg;
89
+ unsigned char index = 0 ;
90
+ unsigned char retryCnt = 0 ;
91
+
92
+ canMsg.can_id = (1 << 31 ) | // Extended 29 bit
93
+ (0 << 30 ) | // No RTR
94
+ (0 << 29 ) | // No error message frame
95
+ (((uint32_t )txMsg->priority ) << 26 ) |
96
+ (((uint32_t )txMsg->hardCoded ) << 25 ) |
97
+ (((uint32_t )txMsg->vscpClass ) << 16 ) |
98
+ (((uint32_t )txMsg->vscpType ) << 8 ) |
99
+ txMsg->oAddr ;
100
+
101
+ canMsg.can_dlc = txMsg->dataSize ;
98
102
99
- for (index = 0 ; index < canMsg.dataLength ; ++index ) {
103
+ for (index = 0 ; index < canMsg.can_dlc ; ++index ) {
100
104
101
105
canMsg.data [index ] = txMsg->data [index ];
102
106
}
@@ -110,7 +114,7 @@ bool transportWrite(vscp_TxMessage const * const txMsg) {
110
114
}
111
115
112
116
// Send CAN message
113
- if (false == MCP2515::transmitCANMessage ( canMsg, 10 )) {
117
+ if (MCP2515::ERROR_OK == mcp2515. sendMessage (& canMsg)) {
114
118
115
119
// CAN message couldn't be sent, try again.
116
120
++retryCnt;
@@ -121,7 +125,7 @@ bool transportWrite(vscp_TxMessage const * const txMsg) {
121
125
}
122
126
123
127
} while ((false == status) && (0 < retryCnt));
124
-
128
+
125
129
return status;
126
130
}
127
131
@@ -152,37 +156,16 @@ void setup() {
152
156
Serial.begin (115200 );
153
157
Serial.println (" VSCP node starts up ..." );
154
158
155
- do {
156
- // Initialize CAN controller with 125 kbit/s (VSCP default bitrate)
157
- if (false == MCP2515::initCAN (CAN_BAUD_125K)) {
158
-
159
- // Try again
160
- delay (100 );
161
- --retry;
162
-
163
- if (0 == retry) {
164
- isError = true ;
165
- }
166
-
167
- } else {
168
-
169
- // Successful initialized
170
- retry = 0 ;
171
- }
172
-
173
- } while (0 < retry);
174
-
175
- if (true == isError) {
176
-
177
- Serial.println (" Failed to initialize CAN controller!" );
178
-
159
+ if (MCP2515::ERROR_OK != mcp2515.reset ()) {
160
+ isError = true ;
179
161
}
180
- // Set to normal mode non single shot
181
- else if (false == MCP2515::setCANNormalMode (LOW)) {
182
-
183
- Serial.println (" Failed to set CAN controller to normal mode!" );
184
-
185
- } else {
162
+ else if (MCP2515::ERROR_OK != mcp2515.setBitrate (CAN_125KBPS)) {
163
+ isError = true ;
164
+ }
165
+ else if (MCP2515::ERROR_OK != mcp2515.setNormalMode ()) {
166
+ isError = true ;
167
+ }
168
+ else {
186
169
187
170
Serial.println (" CAN controller initialized successful." );
188
171
0 commit comments