Select one of the symbols to view example projects that use it.
 
Outline
#include "esp_openthread_radio.h"
#include "sdkconfig.h"
#include "esp_check.h"
#include "esp_err.h"
#include "esp_openthread_border_router.h"
#include "esp_openthread_common_macro.h"
#include "esp_openthread_platform.h"
#include "esp_openthread_types.h"
#include "esp_system.h"
#include "esp_spinel_interface.hpp"
#include "esp_spi_spinel_interface.hpp"
#include "esp_uart_spinel_interface.hpp"
#include "openthread-core-config.h"
#include "lib/spinel/radio_spinel.hpp"
#include "lib/spinel/spinel.h"
#include "openthread/platform/diag.h"
#include "openthread/platform/radio.h"
#include "openthread/platform/time.h"
#include "platform/exit_code.h"
#include "spinel_driver.hpp"
#include <cstring>
#define OT_SPINEL_RCP_VERSION_MAX_SIZE
RadioSpinel
SpinelInterfaceAdapter
SpinelDriver
UartSpinelInterface
s_spinel_interface
s_spinel_driver
s_radio
s_radio_caps
radiospinel_workflow
s_esp_openthread_radio_config
s_compatibility_error_callback
s_internal_rcp_version
esp_openthread_radio_config_set(const esp_openthread_radio_config_t *)
esp_openthread_radio_config_get()
ot_spinel_compatibility_error_callback(void *)
esp_openthread_set_compatibility_error_callback(esp_openthread_compatibility_error_callback)
esp_openthread_radio_init(const esp_openthread_platform_config_t *)
esp_openthread_register_rcp_failure_handler(esp_openthread_rcp_failure_handler)
esp_openthread_rcp_deinit()
esp_openthread_rcp_init()
esp_openthread_rcp_version_set(const char *)
esp_openthread_radio_deinit()
esp_openthread_radio_process(otInstance *, const esp_openthread_mainloop_context_t *)
esp_openthread_radio_update(esp_openthread_mainloop_context_t *)
otPlatRadioGetIeeeEui64(otInstance *, uint8_t *)
otPlatRadioSetPanId(otInstance *, uint16_t)
otPlatRadioSetExtendedAddress(otInstance *, const otExtAddress *)
otPlatRadioSetShortAddress(otInstance *, uint16_t)
otPlatRadioSetPromiscuous(otInstance *, bool)
otPlatRadioIsEnabled(otInstance *)
otPlatRadioEnable(otInstance *)
otPlatRadioDisable(otInstance *)
otPlatRadioSleep(otInstance *)
otPlatRadioReceive(otInstance *, uint8_t)
otPlatRadioTransmit(otInstance *, otRadioFrame *)
otPlatRadioGetTransmitBuffer(otInstance *)
otPlatRadioGetRssi(otInstance *)
otPlatRadioGetCaps(otInstance *)
otPlatRadioGetPromiscuous(otInstance *)
otPlatRadioEnableSrcMatch(otInstance *, bool)
otPlatRadioAddSrcMatchShortEntry(otInstance *, uint16_t)
otPlatRadioAddSrcMatchExtEntry(otInstance *, const otExtAddress *)
otPlatRadioClearSrcMatchShortEntry(otInstance *, uint16_t)
otPlatRadioClearSrcMatchExtEntry(otInstance *, const otExtAddress *)
otPlatRadioClearSrcMatchShortEntries(otInstance *)
otPlatRadioClearSrcMatchExtEntries(otInstance *)
otPlatRadioEnergyScan(otInstance *, uint8_t, uint16_t)
otPlatRadioGetTransmitPower(otInstance *, int8_t *)
otPlatRadioSetTransmitPower(otInstance *, int8_t)
otPlatRadioGetCcaEnergyDetectThreshold(otInstance *, int8_t *)
otPlatRadioSetCcaEnergyDetectThreshold(otInstance *, int8_t)
otPlatRadioGetReceiveSensitivity(otInstance *)
otPlatRadioSetMacKey(otInstance *, uint8_t, uint8_t, const otMacKeyMaterial *, const otMacKeyMaterial *, const otMacKeyMaterial *, otRadioKeyType)
otPlatRadioSetMacFrameCounter(otInstance *, uint32_t)
otPlatDiagProcess(otInstance *, uint8_t, char **)
otPlatDiagSetOutputCallback(otInstance *, otPlatDiagOutputCallback, void *)
otPlatDiagModeSet(bool)
otPlatDiagModeGet()
otPlatDiagTxPowerSet(int8_t)
otPlatDiagChannelSet(uint8_t)
otPlatDiagRadioReceived(otInstance *, otRadioFrame *, otError)
otPlatDiagAlarmCallback(otInstance *)
otPlatRadioGetVersionString(otInstance *)
otPlatRadioGetNow(otInstance *)
otPlatRadioGetCslAccuracy(otInstance *)
otPlatRadioGetCslUncertainty(otInstance *)
otPlatRadioSetRxOnWhenIdle(otInstance *, bool)
otPlatTimeGetXtalAccuracy()
otPlatRadioGetPreferredChannelMask(otInstance *)
otPlatRadioGetSupportedChannelMask(otInstance *)
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/openthread/src/port/esp_openthread_radio_spinel.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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2022-2025 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #include "esp_openthread_radio.h" #include "sdkconfig.h" #include "esp_check.h" #include "esp_err.h" #include "esp_openthread_border_router.h" #include "esp_openthread_common_macro.h" #include "esp_openthread_platform.h" #include "esp_openthread_types.h" #include "esp_system.h" #include "esp_spinel_interface.hpp" #include "esp_spi_spinel_interface.hpp" #include "esp_uart_spinel_interface.hpp" #include "openthread-core-config.h" #include "lib/spinel/radio_spinel.hpp" #include "lib/spinel/spinel.h" #include "openthread/platform/diag.h" #include "openthread/platform/radio.h" #include "openthread/platform/time.h" #include "platform/exit_code.h" #include "spinel_driver.hpp" #include <cstring>21 includes #define OT_SPINEL_RCP_VERSION_MAX_SIZE 100 using ot::Spinel::RadioSpinel; using esp::openthread::SpinelInterfaceAdapter; using ot::Spinel::SpinelDriver; #if CONFIG_OPENTHREAD_RADIO_SPINEL_UART // CONFIG_OPENTHREAD_RADIO_SPINEL_UART using esp::openthread::UartSpinelInterface; static SpinelInterfaceAdapter<UartSpinelInterface> s_spinel_interface;/* ... */ #else // CONFIG_OPENTHREAD_RADIO_SPINEL_SPI using esp::openthread::SpiSpinelInterface; static SpinelInterfaceAdapter<SpiSpinelInterface> s_spinel_interface;/* ... */ #endif static SpinelDriver s_spinel_driver; static RadioSpinel s_radio; static otRadioCaps s_radio_caps = (OT_RADIO_CAPS_ENERGY_SCAN | #if CONFIG_OPENTHREAD_RX_ON_WHEN_IDLE OT_RADIO_CAPS_RX_ON_WHEN_IDLE | #endif OT_RADIO_CAPS_TRANSMIT_SEC | OT_RADIO_CAPS_RECEIVE_TIMING | OT_RADIO_CAPS_TRANSMIT_TIMING | OT_RADIO_CAPS_ACK_TIMEOUT | OT_RADIO_CAPS_SLEEP_TO_TX); static const char *radiospinel_workflow = "radio_spinel"; static const esp_openthread_radio_config_t *s_esp_openthread_radio_config = NULL; static esp_openthread_compatibility_error_callback s_compatibility_error_callback = NULL; static char s_internal_rcp_version[OT_SPINEL_RCP_VERSION_MAX_SIZE] = {'\0'}; static void esp_openthread_radio_config_set(const esp_openthread_radio_config_t *config) { s_esp_openthread_radio_config = config; }{ ... } static const esp_openthread_radio_config_t *esp_openthread_radio_config_get(void) { return s_esp_openthread_radio_config; }{ ... } static void ot_spinel_compatibility_error_callback(void *context) { OT_UNUSED_VARIABLE(context); if (s_compatibility_error_callback) { s_compatibility_error_callback(); }{...} else { ESP_LOGE(OT_PLAT_LOG_TAG, "None callback to handle compatibility error of openthread spinel"); assert(false); }{...} }{ ... } void esp_openthread_set_compatibility_error_callback(esp_openthread_compatibility_error_callback callback) { s_compatibility_error_callback = callback; }{ ... } esp_err_t esp_openthread_radio_init(const esp_openthread_platform_config_t *config) { spinel_iid_t iidList[ot::Spinel::kSpinelHeaderMaxNumIid]; iidList[0] = 0; ot::Spinel::RadioSpinelCallbacks callbacks; #if CONFIG_OPENTHREAD_DIAG callbacks.mDiagReceiveDone = otPlatDiagRadioReceiveDone; callbacks.mDiagTransmitDone = otPlatDiagRadioTransmitDone;/* ... */ #endif // CONFIG_OPENTHREAD_DIAG callbacks.mEnergyScanDone = otPlatRadioEnergyScanDone; callbacks.mReceiveDone = otPlatRadioReceiveDone; callbacks.mTransmitDone = otPlatRadioTxDone; callbacks.mTxStarted = otPlatRadioTxStarted; s_radio.SetCallbacks(callbacks); esp_openthread_radio_config_set(&config->radio_config); #if CONFIG_OPENTHREAD_RADIO_SPINEL_UART // CONFIG_OPENTHREAD_RADIO_SPINEL_UART ESP_RETURN_ON_ERROR(s_spinel_interface.GetSpinelInterface().Enable(config->radio_config.radio_uart_config), OT_PLAT_LOG_TAG, "Spinel interface init failed");/* ... */ #else // CONFIG_OPENTHREAD_RADIO_SPINEL_SPI ESP_RETURN_ON_ERROR(s_spinel_interface.GetSpinelInterface().Enable(config->radio_config.radio_spi_config), OT_PLAT_LOG_TAG, "Spinel interface init failed");/* ... */ #endif s_spinel_driver.Init(s_spinel_interface.GetSpinelInterface(), true, iidList, ot::Spinel::kSpinelHeaderMaxNumIid); if (strlen(s_internal_rcp_version) > 0) { const char *running_rcp_version = s_spinel_driver.GetVersion(); if (strcmp(s_internal_rcp_version, running_rcp_version) != 0) { if (s_compatibility_error_callback) { s_compatibility_error_callback(); }{...} else { ESP_LOGW(OT_PLAT_LOG_TAG, "The running rcp does not match the provided rcp"); }{...} }{...} }{...} s_radio.SetCompatibilityErrorCallback(ot_spinel_compatibility_error_callback, esp_openthread_get_instance()); s_radio.Init(/*skip_rcp_compatibility_check=*/false, /*reset_radio=*/true, &s_spinel_driver, s_radio_caps, /*RCP_time_sync=*/true); #if CONFIG_OPENTHREAD_RADIO_SPINEL_SPI // CONFIG_OPENTHREAD_RADIO_SPINEL_SPI ESP_RETURN_ON_ERROR(s_spinel_interface.GetSpinelInterface().AfterRadioInit(), OT_PLAT_LOG_TAG, "Spinel interface init failed"); #endif return esp_openthread_platform_workflow_register(&esp_openthread_radio_update, &esp_openthread_radio_process, radiospinel_workflow); }{ ... } void esp_openthread_register_rcp_failure_handler(esp_openthread_rcp_failure_handler handler) { s_spinel_interface.GetSpinelInterface().RegisterRcpFailureHandler(handler); }{ ... } esp_err_t esp_openthread_rcp_deinit(void) { ESP_RETURN_ON_FALSE(otThreadGetDeviceRole(esp_openthread_get_instance()) == OT_DEVICE_ROLE_DISABLED, ESP_ERR_INVALID_STATE, OT_PLAT_LOG_TAG, "Thread is enabled, failed to deinitialize RCP"); ESP_RETURN_ON_FALSE(!otIp6IsEnabled(esp_openthread_get_instance()), ESP_ERR_INVALID_STATE, OT_PLAT_LOG_TAG, "OT interface is up, failed to deinitialize RCP"); if (s_radio.IsEnabled()) { ESP_RETURN_ON_FALSE(s_radio.Sleep() == OT_ERROR_NONE, ESP_ERR_INVALID_STATE, OT_PLAT_LOG_TAG, "Radio fails to sleep"); ESP_RETURN_ON_FALSE(s_radio.Disable() == OT_ERROR_NONE, ESP_ERR_INVALID_STATE, OT_PLAT_LOG_TAG, "Fail to disable radio"); }{...} ESP_RETURN_ON_FALSE(s_spinel_interface.GetSpinelInterface().Disable() == OT_ERROR_NONE, ESP_ERR_INVALID_STATE, OT_PLAT_LOG_TAG, "Fail to deinitialize UART"); esp_openthread_platform_workflow_unregister(radiospinel_workflow); return ESP_OK; }{ ... } esp_err_t esp_openthread_rcp_init(void) { const esp_openthread_radio_config_t *radio_config = esp_openthread_radio_config_get(); #if CONFIG_OPENTHREAD_RADIO_SPINEL_UART ESP_RETURN_ON_ERROR(s_spinel_interface.GetSpinelInterface().Enable(radio_config->radio_uart_config), OT_PLAT_LOG_TAG, "Spinel interface init failed");/* ... */ #else // CONFIG_OPENTHREAD_RADIO_SPINEL_SPI ESP_RETURN_ON_ERROR(s_spinel_interface.GetSpinelInterface().Enable(radio_config->radio_spi_config), OT_PLAT_LOG_TAG, "Spinel interface init failed");/* ... */ #endif // CONFIG_OPENTHREAD_RADIO_SPINEL_UART ESP_RETURN_ON_FALSE(s_radio.Enable(esp_openthread_get_instance()) == OT_ERROR_NONE, ESP_FAIL, OT_PLAT_LOG_TAG, "Fail to enable radio"); #if OPENTHREAD_SPINEL_CONFIG_RCP_RESTORATION_MAX_COUNT > 0 s_radio.RestoreProperties(); #endif return esp_openthread_platform_workflow_register(&esp_openthread_radio_update, &esp_openthread_radio_process, radiospinel_workflow); }{ ... } esp_err_t esp_openthread_rcp_version_set(const char *version_str) { if (version_str == NULL) { memset(s_internal_rcp_version, 0, OT_SPINEL_RCP_VERSION_MAX_SIZE); return ESP_OK; }{...} ESP_RETURN_ON_FALSE(strlen(version_str) > 0 && strlen(version_str) < OT_SPINEL_RCP_VERSION_MAX_SIZE, ESP_FAIL, OT_PLAT_LOG_TAG, "Invalid rcp version"); strcpy(s_internal_rcp_version, version_str); return ESP_OK; }{ ... } void esp_openthread_radio_deinit(void) { s_radio.Deinit(); s_spinel_driver.Deinit(); s_spinel_interface.GetSpinelInterface().Disable(); esp_openthread_platform_workflow_unregister(radiospinel_workflow); s_compatibility_error_callback = NULL; }{ ... } esp_err_t esp_openthread_radio_process(otInstance *instance, const esp_openthread_mainloop_context_t *mainloop) { s_spinel_driver.Process((void *)mainloop); s_radio.Process((void *)mainloop); return ESP_OK; }{ ... } void esp_openthread_radio_update(esp_openthread_mainloop_context_t *mainloop) { s_spinel_interface.GetSpinelInterface().UpdateFdSet((void *)mainloop); }{ ... } void otPlatRadioGetIeeeEui64(otInstance *instance, uint8_t *ieee_eui64) { SuccessOrDie(s_radio.GetIeeeEui64(ieee_eui64)); }{ ... } void otPlatRadioSetPanId(otInstance *instance, uint16_t pan_id) { SuccessOrDie(s_radio.SetPanId(pan_id)); }{ ... } void otPlatRadioSetExtendedAddress(otInstance *instance, const otExtAddress *address) { otExtAddress addr; for (size_t i = 0; i < sizeof(addr); i++) { addr.m8[i] = address->m8[sizeof(addr) - 1 - i]; }{...} SuccessOrDie(s_radio.SetExtendedAddress(addr)); }{ ... } void otPlatRadioSetShortAddress(otInstance *instance, uint16_t address) { SuccessOrDie(s_radio.SetShortAddress(address)); }{ ... } void otPlatRadioSetPromiscuous(otInstance *instance, bool enable) { SuccessOrDie(s_radio.SetPromiscuous(enable)); }{ ... } bool otPlatRadioIsEnabled(otInstance *instance) { return s_radio.IsEnabled(); }{ ... } otError otPlatRadioEnable(otInstance *instance) { return s_radio.Enable(instance); }{ ... } otError otPlatRadioDisable(otInstance *instance) { return s_radio.Disable(); }{ ... } otError otPlatRadioSleep(otInstance *instance) { return s_radio.Sleep(); }{ ... } otError otPlatRadioReceive(otInstance *instance, uint8_t channel) { return s_radio.Receive(channel); }{ ... } otError otPlatRadioTransmit(otInstance *instance, otRadioFrame *frame) { return s_radio.Transmit(*frame); }{ ... } otRadioFrame *otPlatRadioGetTransmitBuffer(otInstance *instance) { return &s_radio.GetTransmitFrame(); }{ ... } int8_t otPlatRadioGetRssi(otInstance *instance) { return s_radio.GetRssi(); }{ ... } otRadioCaps otPlatRadioGetCaps(otInstance *instance) { s_radio_caps = s_radio.GetRadioCaps(); return s_radio_caps; }{ ... } bool otPlatRadioGetPromiscuous(otInstance *instance) { return s_radio.IsPromiscuous(); }{ ... } void otPlatRadioEnableSrcMatch(otInstance *instance, bool enable) { SuccessOrDie(s_radio.EnableSrcMatch(enable)); }{ ... } otError otPlatRadioAddSrcMatchShortEntry(otInstance *instance, uint16_t short_address) { return s_radio.AddSrcMatchShortEntry(short_address); }{ ... } otError otPlatRadioAddSrcMatchExtEntry(otInstance *instance, const otExtAddress *ext_address) { otExtAddress addr; for (size_t i = 0; i < sizeof(addr); i++) { addr.m8[i] = ext_address->m8[sizeof(addr) - 1 - i]; }{...} return s_radio.AddSrcMatchExtEntry(addr); }{ ... } otError otPlatRadioClearSrcMatchShortEntry(otInstance *instance, uint16_t short_address) { return s_radio.ClearSrcMatchShortEntry(short_address); }{ ... } otError otPlatRadioClearSrcMatchExtEntry(otInstance *instance, const otExtAddress *ext_address) { otExtAddress addr; for (size_t i = 0; i < sizeof(addr); i++) { addr.m8[i] = ext_address->m8[sizeof(addr) - 1 - i]; }{...} return s_radio.ClearSrcMatchExtEntry(addr); }{ ... } void otPlatRadioClearSrcMatchShortEntries(otInstance *instance) { SuccessOrDie(s_radio.ClearSrcMatchShortEntries()); }{ ... } void otPlatRadioClearSrcMatchExtEntries(otInstance *instance) { SuccessOrDie(s_radio.ClearSrcMatchExtEntries()); }{ ... } otError otPlatRadioEnergyScan(otInstance *instance, uint8_t channel, uint16_t duration) { return s_radio.EnergyScan(channel, duration); }{ ... } otError otPlatRadioGetTransmitPower(otInstance *instance, int8_t *power) { otError error; VerifyOrExit(power != NULL, error = OT_ERROR_INVALID_ARGS); error = s_radio.GetTransmitPower(*power); exit: return error; }{ ... } otError otPlatRadioSetTransmitPower(otInstance *instance, int8_t power) { return s_radio.SetTransmitPower(power); }{ ... } otError otPlatRadioGetCcaEnergyDetectThreshold(otInstance *instance, int8_t *threshold) { otError error; VerifyOrExit(threshold != NULL, error = OT_ERROR_INVALID_ARGS); error = s_radio.GetCcaEnergyDetectThreshold(*threshold); exit: return error; }{ ... } otError otPlatRadioSetCcaEnergyDetectThreshold(otInstance *instance, int8_t threshold) { return s_radio.SetCcaEnergyDetectThreshold(threshold); }{ ... } int8_t otPlatRadioGetReceiveSensitivity(otInstance *instance) { return s_radio.GetReceiveSensitivity(); }{ ... } void otPlatRadioSetMacKey(otInstance *aInstance, uint8_t aKeyIdMode, uint8_t aKeyId, const otMacKeyMaterial *aPrevKey, const otMacKeyMaterial *aCurrKey, const otMacKeyMaterial *aNextKey, otRadioKeyType aKeyType) { SuccessOrDie(s_radio.SetMacKey(aKeyIdMode, aKeyId, aPrevKey, aCurrKey, aNextKey)); }{ ... } void otPlatRadioSetMacFrameCounter(otInstance *aInstance, uint32_t aMacFrameCounter) { SuccessOrDie(s_radio.SetMacFrameCounter(aMacFrameCounter, true)); }{ ... } #if CONFIG_OPENTHREAD_DIAG otError otPlatDiagProcess(otInstance *aInstance, uint8_t aArgsLength, char *aArgs[]) { // deliver the platform specific diags commands to radio only ncp. char cmd[OPENTHREAD_CONFIG_DIAG_CMD_LINE_BUFFER_SIZE] = {'\0'}; char *cur = cmd; char *end = cmd + sizeof(cmd); for (int index = 0; index < aArgsLength; index++) { cur += snprintf(cur, static_cast<size_t>(end - cur), "%s ", aArgs[index]); }{...} return s_radio.PlatDiagProcess(cmd); }{ ... } void otPlatDiagSetOutputCallback(otInstance *aInstance, otPlatDiagOutputCallback aCallback, void *aContext) { OT_UNUSED_VARIABLE(aInstance); OT_UNUSED_VARIABLE(aCallback); OT_UNUSED_VARIABLE(aContext); }{ ... } void otPlatDiagModeSet(bool aMode) { SuccessOrExit(s_radio.PlatDiagProcess(aMode ? "start" : "stop")); s_radio.SetDiagEnabled(aMode); exit: return; }{ ... } bool otPlatDiagModeGet(void) { return s_radio.IsDiagEnabled(); }{ ... } void otPlatDiagTxPowerSet(int8_t tx_power) { char cmd[OPENTHREAD_CONFIG_DIAG_CMD_LINE_BUFFER_SIZE]; snprintf(cmd, sizeof(cmd), "power %d", tx_power); SuccessOrExit(s_radio.PlatDiagProcess(cmd)); exit: return; }{ ... } void otPlatDiagChannelSet(uint8_t channel) { char cmd[OPENTHREAD_CONFIG_DIAG_CMD_LINE_BUFFER_SIZE]; snprintf(cmd, sizeof(cmd), "channel %d", channel); SuccessOrExit(s_radio.PlatDiagProcess(cmd)); exit: return; }{ ... } void otPlatDiagRadioReceived(otInstance *instance, otRadioFrame *frame, otError error) { }{ ... } void otPlatDiagAlarmCallback(otInstance *instance) { }{ ... } /* ... */#endif // CONFIG_OPENTHREAD_DIAG const char *otPlatRadioGetVersionString(otInstance *aInstance) { return s_radio.GetVersion(); }{ ... } uint64_t otPlatRadioGetNow(otInstance *aInstance) { OT_UNUSED_VARIABLE(aInstance); return s_radio.GetNow(); }{ ... } #if OPENTHREAD_CONFIG_MAC_CSL_TRANSMITTER_ENABLE uint8_t otPlatRadioGetCslAccuracy(otInstance *aInstance) { OT_UNUSED_VARIABLE(aInstance); return s_radio.GetCslAccuracy(); }{ ... } uint8_t otPlatRadioGetCslUncertainty(otInstance *aInstance) { OT_UNUSED_VARIABLE(aInstance); return s_radio.GetCslUncertainty(); }{ ... } #endif/* ... */ #if OPENTHREAD_CONFIG_MLE_LINK_METRICS_SUBJECT_ENABLE otError otPlatRadioConfigureEnhAckProbing(otInstance *aInstance, otLinkMetrics aLinkMetrics, const otShortAddress aShortAddress, const otExtAddress *aExtAddress) { OT_UNUSED_VARIABLE(aInstance); return s_radio.ConfigureEnhAckProbing(aLinkMetrics, aShortAddress, *aExtAddress); }{...} /* ... */#endif #if CONFIG_OPENTHREAD_RX_ON_WHEN_IDLE void otPlatRadioSetRxOnWhenIdle(otInstance *aInstance, bool aEnable) { s_radio.SetRxOnWhenIdle(aEnable); }{ ... } /* ... */#endif uint16_t otPlatTimeGetXtalAccuracy(void) { return CONFIG_OPENTHREAD_XTAL_ACCURACY; }{ ... } uint32_t otPlatRadioGetPreferredChannelMask(otInstance *aInstance) { OT_UNUSED_VARIABLE(aInstance); // Refer to `GetRadioChannelMask(bool aPreferred)`: TRUE to get preferred channel mask return s_radio.GetRadioChannelMask(true); }{ ... } uint32_t otPlatRadioGetSupportedChannelMask(otInstance *aInstance) { OT_UNUSED_VARIABLE(aInstance); // Refer to `GetRadioChannelMask(bool aPreferred)`: FALSE to get supported channel mask return s_radio.GetRadioChannelMask(false); }{ ... }
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.