-
Notifications
You must be signed in to change notification settings - Fork 3k
/
CAN.cpp
180 lines (156 loc) · 3.97 KB
/
CAN.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
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
/* mbed Microcontroller Library
* Copyright (c) 2006-2019 ARM Limited
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "drivers/CAN.h"
#if DEVICE_CAN
#include "platform/mbed_power_mgmt.h"
#include "platform/mbed_error.h"
namespace mbed {
CAN::CAN(PinName rd, PinName td) : _can(), _irq()
{
// No lock needed in constructor
can_init(&_can, rd, td);
can_irq_init(&_can, (&CAN::_irq_handler), reinterpret_cast<uintptr_t>(this));
}
CAN::CAN(PinName rd, PinName td, int hz) : _can(), _irq()
{
// No lock needed in constructor
can_init_freq(&_can, rd, td, hz);
can_irq_init(&_can, (&CAN::_irq_handler), reinterpret_cast<uintptr_t>(this));
}
CAN::CAN(const can_pinmap_t &pinmap) : _can(), _irq()
{
// No lock needed in constructor
can_init_direct(&_can, &pinmap);
can_irq_init(&_can, (&CAN::_irq_handler), reinterpret_cast<uintptr_t>(this));
}
CAN::CAN(const can_pinmap_t &pinmap, int hz) : _can(), _irq()
{
// No lock needed in constructor
can_init_freq_direct(&_can, &pinmap, hz);
can_irq_init(&_can, (&CAN::_irq_handler), reinterpret_cast<uintptr_t>(this));
}
CAN::~CAN()
{
// No lock needed in destructor
// Detaching interrupts releases the sleep lock if it was locked
for (int irq = 0; irq < IrqType::IrqCnt; irq++) {
attach(nullptr, (IrqType)irq);
}
can_irq_free(&_can);
can_free(&_can);
}
int CAN::frequency(int f)
{
lock();
int ret = can_frequency(&_can, f);
unlock();
return ret;
}
int CAN::write(CANMessage msg)
{
lock();
int ret = can_write(&_can, msg, 0);
unlock();
return ret;
}
int CAN::read(CANMessage &msg, int handle)
{
lock();
int ret = can_read(&_can, &msg, handle);
if (msg.len > 8) {
MBED_ERROR(MBED_MAKE_ERROR(MBED_MODULE_DRIVER_CAN, MBED_ERROR_CODE_READ_FAILED), "Read tried to write more than 8 bytes");
}
unlock();
return ret;
}
void CAN::reset()
{
lock();
can_reset(&_can);
unlock();
}
unsigned char CAN::rderror()
{
lock();
int ret = can_rderror(&_can);
unlock();
return ret;
}
unsigned char CAN::tderror()
{
lock();
int ret = can_tderror(&_can);
unlock();
return ret;
}
void CAN::monitor(bool silent)
{
lock();
can_monitor(&_can, (silent) ? 1 : 0);
unlock();
}
int CAN::mode(Mode mode)
{
lock();
int ret = can_mode(&_can, (CanMode)mode);
unlock();
return ret;
}
int CAN::filter(unsigned int id, unsigned int mask, CANFormat format, int handle)
{
lock();
int ret = can_filter(&_can, id, mask, format, handle);
unlock();
return ret;
}
void CAN::attach(Callback<void()> func, IrqType type)
{
CAN::lock();
if (func) {
// lock deep sleep only the first time
if (!_irq[(CanIrqType)type]) {
sleep_manager_lock_deep_sleep();
}
_irq[(CanIrqType)type] = func;
can_irq_set(&_can, (CanIrqType)type, 1);
} else {
// unlock deep sleep only the first time
if (_irq[(CanIrqType)type]) {
sleep_manager_unlock_deep_sleep();
}
_irq[(CanIrqType)type] = nullptr;
can_irq_set(&_can, (CanIrqType)type, 0);
}
CAN::unlock();
}
void CAN::_irq_handler(uintptr_t context, CanIrqType type)
{
CAN *handler = reinterpret_cast<CAN *>(context);
if (handler->_irq[type]) {
handler->_irq[type].call();
}
}
void CAN::lock()
{
_mutex.lock();
}
void CAN::unlock()
{
_mutex.unlock();
}
} // namespace mbed
#endif