-
-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathCanMsg.h
156 lines (124 loc) · 4.54 KB
/
CanMsg.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
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
/*
CanMsg.h - Library for CAN message handling
Copyright (c) 2023 Arduino. All right reserved.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef ARDUINOCORE_API_CAN_MSG_H_
#define ARDUINOCORE_API_CAN_MSG_H_
/**************************************************************************************
* INCLUDE
**************************************************************************************/
#include <inttypes.h>
#include <string.h>
#include "Print.h"
#include "Printable.h"
#include "Common.h"
/**************************************************************************************
* NAMESPACE
**************************************************************************************/
namespace arduino
{
/**************************************************************************************
* CLASS DECLARATION
**************************************************************************************/
class CanMsg : public Printable
{
public:
static uint8_t constexpr MAX_DATA_LENGTH = 8;
static uint32_t constexpr CAN_EFF_FLAG = 0x80000000U;
static uint32_t constexpr CAN_SFF_MASK = 0x000007FFU; /* standard frame format (SFF) */
static uint32_t constexpr CAN_EFF_MASK = 0x1FFFFFFFU; /* extended frame format (EFF) */
CanMsg(uint32_t const can_id, uint8_t const can_data_len, uint8_t const * can_data_ptr)
: id{can_id}
, data_length{min(can_data_len, MAX_DATA_LENGTH)}
, data{0}
{
if (data_length && can_data_ptr)
memcpy(data, can_data_ptr, data_length);
}
CanMsg() : CanMsg(0, 0, nullptr) { }
CanMsg(CanMsg const & other)
{
id = other.id;
data_length = other.data_length;
if (data_length > 0)
memcpy(data, other.data, data_length);
}
virtual ~CanMsg() { }
CanMsg & operator = (CanMsg const & other)
{
if (this != &other)
{
id = other.id;
data_length = other.data_length;
if (data_length > 0)
memcpy(data, other.data, data_length);
}
return (*this);
}
virtual size_t printTo(Print & p) const override
{
char buf[20] = {0};
size_t len = 0;
/* Print the header. */
if (isStandardId())
len = snprintf(buf, sizeof(buf), "[%03" PRIX32 "] (%d) : ", getStandardId(), data_length);
else
len = snprintf(buf, sizeof(buf), "[%08" PRIX32 "] (%d) : ", getExtendedId(), data_length);
size_t n = p.write(buf, len);
/* Print the data. */
for (size_t d = 0; d < data_length; d++)
{
len = snprintf(buf, sizeof(buf), "%02X", data[d]);
n += p.write(buf, len);
}
/* Wrap up. */
return n;
}
uint32_t getStandardId() const {
return (id & CAN_SFF_MASK);
}
uint32_t getExtendedId() const {
return (id & CAN_EFF_MASK);
}
bool isStandardId() const {
return ((id & CAN_EFF_FLAG) == 0);
}
bool isExtendedId() const {
return ((id & CAN_EFF_FLAG) == CAN_EFF_FLAG);
}
/*
* CAN ID semantics (mirroring definition by linux/can.h):
* |- Bit 31 : frame format flag (0 = standard 11 bit, 1 = extended 29 bit)
* |- Bit 30 : reserved (future remote transmission request flag)
* |- Bit 29 : reserved (future error frame flag)
* |- Bit 0-28 : CAN identifier (11/29 bit)
*/
uint32_t id;
uint8_t data_length;
uint8_t data[MAX_DATA_LENGTH];
};
/**************************************************************************************
* FREE FUNCTIONS
**************************************************************************************/
inline uint32_t CanStandardId(uint32_t const id) {
return (id & CanMsg::CAN_SFF_MASK);
}
inline uint32_t CanExtendedId(uint32_t const id) {
return (CanMsg::CAN_EFF_FLAG | (id & CanMsg::CAN_EFF_MASK));
}
/**************************************************************************************
* NAMESPACE
**************************************************************************************/
} /* arduino */
#endif /* ARDUINOCORE_API_CAN_MSG_H_ */