Select one of the symbols to view example projects that use it.
 
Outline
#include "esp_radio_spinel_uart_interface.hpp"
#include <errno.h>
#include <sys/unistd.h>
#include "esp_check.h"
#include "esp_openthread_common_macro.h"
#include "openthread/platform/time.h"
#include "hdlc.hpp"
#include "core/common/code_utils.hpp"
esp
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/openthread/src/spinel/esp_radio_spinel_uart_interface.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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #include "esp_radio_spinel_uart_interface.hpp" #include <errno.h> #include <sys/unistd.h> #include "esp_check.h" #include "esp_openthread_common_macro.h" #include "openthread/platform/time.h" #include "hdlc.hpp" #include "core/common/code_utils.hpp"8 includes namespace esp { namespace radio_spinel { UartSpinelInterface::UartSpinelInterface(void) : m_receiver_frame_callback(nullptr) , m_receiver_frame_context(nullptr) , m_receive_frame_buffer(nullptr) , m_uart_fd(-1) , mRcpFailureHandler(nullptr) { }{ ... } UartSpinelInterface::~UartSpinelInterface(void) { Deinit(); }{ ... } otError UartSpinelInterface::Init(ReceiveFrameCallback aCallback, void *aCallbackContext, RxFrameBuffer &aFrameBuffer) { otError error = OT_ERROR_NONE; m_receiver_frame_callback = aCallback; m_receiver_frame_context = aCallbackContext; m_receive_frame_buffer = &aFrameBuffer; m_hdlc_decoder.Init(aFrameBuffer, HandleHdlcFrame, this); return error; }{ ... } void UartSpinelInterface::Deinit(void) { m_receiver_frame_callback = nullptr; m_receiver_frame_context = nullptr; m_receive_frame_buffer = nullptr; }{ ... } esp_err_t UartSpinelInterface::Enable(const esp_radio_spinel_uart_config_t &radio_uart_config) { esp_err_t error = ESP_OK; m_uart_rx_buffer = static_cast<uint8_t *>(heap_caps_malloc(kMaxFrameSize, MALLOC_CAP_8BIT)); if (m_uart_rx_buffer == NULL) { return ESP_ERR_NO_MEM; }{...} error = InitUart(radio_uart_config); if (error == ESP_OK) { ESP_LOGI(ESP_SPINEL_LOG_TAG, "spinel UART interface initialization completed"); }{...} return error; }{ ... } esp_err_t UartSpinelInterface::Disable(void) { if (m_uart_rx_buffer) { heap_caps_free(m_uart_rx_buffer); }{...} m_uart_rx_buffer = NULL; return DeinitUart(); }{ ... } otError UartSpinelInterface::SendFrame(const uint8_t *frame, uint16_t length) { otError error = OT_ERROR_NONE; encoder_buffer.Clear(); ot::Hdlc::Encoder hdlc_encoder(encoder_buffer); SuccessOrExit(error = hdlc_encoder.BeginFrame()); SuccessOrExit(error = hdlc_encoder.Encode(frame, length)); SuccessOrExit(error = hdlc_encoder.EndFrame()); SuccessOrExit(error = Write(encoder_buffer.GetFrame(), encoder_buffer.GetLength())); exit: if (error != OT_ERROR_NONE) { ESP_LOGE(ESP_SPINEL_LOG_TAG, "send radio frame failed"); }{...} else { ESP_LOGD(ESP_SPINEL_LOG_TAG, "sent radio frame"); }{...} return error; }{ ... } void UartSpinelInterface::Process(const void *aMainloopContext) { if (FD_ISSET(m_uart_fd, &((esp_radio_spinel_mainloop_context_t *)aMainloopContext)->read_fds)) { ESP_LOGD(ESP_SPINEL_LOG_TAG, "radio uart read event"); TryReadAndDecode(); }{...} }{ ... } int UartSpinelInterface::TryReadAndDecode(void) { uint8_t buffer[UART_HW_FIFO_LEN(m_uart_config.port)]; ssize_t rval; do { rval = read(m_uart_fd, buffer, sizeof(buffer)); if (rval > 0) { m_hdlc_decoder.Decode(buffer, static_cast<uint16_t>(rval)); }{...} }{...} while (rval > 0); if ((rval < 0) && (errno != EAGAIN) && (errno != EWOULDBLOCK)) { ESP_ERROR_CHECK(TryRecoverUart()); }{...} return rval; }{ ... } otError UartSpinelInterface::WaitForWritable(void) { otError error = OT_ERROR_NONE; struct timeval timeout = {kMaxWaitTime / MS_PER_S, (kMaxWaitTime % MS_PER_S) * US_PER_MS}; uint64_t now = otPlatTimeGet(); uint64_t end = now + kMaxWaitTime * US_PER_MS; fd_set write_fds; fd_set error_fds; int rval; while (true) { FD_ZERO(&write_fds); FD_ZERO(&error_fds); FD_SET(m_uart_fd, &write_fds); FD_SET(m_uart_fd, &error_fds); rval = select(m_uart_fd + 1, NULL, &write_fds, &error_fds, &timeout); if (rval > 0) { if (FD_ISSET(m_uart_fd, &write_fds)) { ExitNow(); }{...} else if (FD_ISSET(m_uart_fd, &error_fds)) { ExitNow(error = OT_ERROR_FAILED); }{...} }{...} else if ((rval < 0) && (errno != EINTR)) { ESP_ERROR_CHECK(TryRecoverUart()); ExitNow(error = OT_ERROR_FAILED); }{...} now = otPlatTimeGet(); if (end > now) { uint64_t remain = end - now; timeout.tv_sec = static_cast<time_t>(remain / 1000000); timeout.tv_usec = static_cast<suseconds_t>(remain % 1000000); }{...} else { break; }{...} }{...} error = OT_ERROR_FAILED; exit: return error; }{ ... } otError UartSpinelInterface::Write(const uint8_t *aFrame, uint16_t length) { otError error = OT_ERROR_NONE; while (length) { ssize_t rval; rval = write(m_uart_fd, aFrame, length); if (rval > 0) { assert(rval <= length); length -= static_cast<uint16_t>(rval); aFrame += static_cast<uint16_t>(rval); continue; }{...} else if (rval < 0) { ESP_ERROR_CHECK(TryRecoverUart()); ExitNow(error = OT_ERROR_FAILED); }{...} SuccessOrExit(error = WaitForWritable()); }{...} exit: return error; }{ ... } otError UartSpinelInterface::WaitForFrame(uint64_t timeout_us) { otError error = OT_ERROR_NONE; struct timeval timeout; fd_set read_fds; fd_set error_fds; int rval; FD_ZERO(&read_fds); FD_ZERO(&error_fds); FD_SET(m_uart_fd, &read_fds); FD_SET(m_uart_fd, &error_fds); timeout.tv_sec = static_cast<time_t>(timeout_us / US_PER_S); timeout.tv_usec = static_cast<suseconds_t>(timeout_us % US_PER_S); rval = select(m_uart_fd + 1, &read_fds, NULL, &error_fds, &timeout); if (rval > 0) { if (FD_ISSET(m_uart_fd, &read_fds)) { TryReadAndDecode(); }{...} else if (FD_ISSET(m_uart_fd, &error_fds)) { ESP_ERROR_CHECK(TryRecoverUart()); ExitNow(error = OT_ERROR_FAILED); }{...} }{...} else if (rval == 0) { ExitNow(error = OT_ERROR_RESPONSE_TIMEOUT); }{...} else { ESP_ERROR_CHECK(TryRecoverUart()); ExitNow(error = OT_ERROR_FAILED); }{...} exit: return error; }{ ... } void UartSpinelInterface::HandleHdlcFrame(void *context, otError error) { static_cast<UartSpinelInterface *>(context)->HandleHdlcFrame(error); }{ ... } void UartSpinelInterface::HandleHdlcFrame(otError error) { if (error == OT_ERROR_NONE) { ESP_LOGD(ESP_SPINEL_LOG_TAG, "received hdlc radio frame"); m_receiver_frame_callback(m_receiver_frame_context); }{...} else { ESP_LOGE(ESP_SPINEL_LOG_TAG, "dropping radio frame: %s", otThreadErrorToString(error)); m_receive_frame_buffer->DiscardFrame(); }{...} }{ ... } esp_err_t UartSpinelInterface::InitUart(const esp_radio_spinel_uart_config_t &radio_uart_config) { if (mUartInitHandler) { m_uart_config = radio_uart_config; return mUartInitHandler(&m_uart_config, &m_uart_fd); }{...} else { ESP_LOGE(ESP_SPINEL_LOG_TAG, "None mUartInitHandler"); return ESP_FAIL; }{...} }{ ... } esp_err_t UartSpinelInterface::DeinitUart(void) { if (mUartDeinitHandler) { return mUartDeinitHandler(&m_uart_config, &m_uart_fd); }{...} else { ESP_LOGE(ESP_SPINEL_LOG_TAG, "None mUartDeinitHandler"); return ESP_FAIL; }{...} }{ ... } esp_err_t UartSpinelInterface::TryRecoverUart(void) { ESP_RETURN_ON_ERROR(DeinitUart(), ESP_SPINEL_LOG_TAG, "DeInitUart failed"); ESP_RETURN_ON_ERROR(InitUart(m_uart_config), ESP_SPINEL_LOG_TAG, "InitUart failed"); return ESP_OK; }{ ... } otError UartSpinelInterface::HardwareReset(void) { if (mRcpFailureHandler) { TryRecoverUart(); mRcpFailureHandler(); }{...} return OT_ERROR_NONE; }{ ... } void UartSpinelInterface::UpdateFdSet(void *aMainloopContext) { // Register only READ events for radio UART and always wait // for a radio WRITE to complete. FD_SET(m_uart_fd, &((esp_radio_spinel_mainloop_context_t *)aMainloopContext)->read_fds); if (m_uart_fd > ((esp_radio_spinel_mainloop_context_t *)aMainloopContext)->max_fd) { ((esp_radio_spinel_mainloop_context_t *)aMainloopContext)->max_fd = m_uart_fd; }{...} }{ ... } uint32_t UartSpinelInterface::GetBusSpeed(void) const { return m_uart_config.uart_config.baud_rate; }{...} }{...} // namespace radio_spinel }{...} // namespace esp
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.