Select one of the symbols to view example projects that use it.
 
Outline
#include <stdbool.h>
#include "esp_err.h"
#include "esp_openthread_types.h"
#include "openthread/instance.h"
#include "esp_coex_i154.h"
esp_openthread_radio_init(const esp_openthread_platform_config_t *);
esp_openthread_radio_deinit();
esp_openthread_radio_update(esp_openthread_mainloop_context_t *);
esp_openthread_radio_process(otInstance *, const esp_openthread_mainloop_context_t *);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/openthread/private_include/esp_openthread_radio.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2021-2025 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once #include <stdbool.h> #include "esp_err.h" #include "esp_openthread_types.h" #include "openthread/instance.h" #if (CONFIG_ESP_COEX_SW_COEXIST_ENABLE || CONFIG_EXTERNAL_COEX_ENABLE) #include "esp_coex_i154.h" #endif #ifdef __cplusplus extern "C" { #endif /** * @brief This function initializes the OpenThread radio. * * @return * - ESP_OK on success * - ESP_ERR_NO_MEM if allocation has failed * *//* ... */ esp_err_t esp_openthread_radio_init(const esp_openthread_platform_config_t *config); /** * @brief This function deinitializes the OpenThread radio. * *//* ... */ void esp_openthread_radio_deinit(void); /** * @brief This function updates the radio fds and timeouts to the main loop. * * @param[inout] mainloop The main loop context. * *//* ... */ void esp_openthread_radio_update(esp_openthread_mainloop_context_t *mainloop); /** * @brief This function performs the OpenThread radio process. * * @param[in] instance The OpenThread instance. * @param[in] mainloop The main loop context. * * @return * - ESP_OK on success * - ESP_FAIL on failure * *//* ... */ esp_err_t esp_openthread_radio_process(otInstance *instance, const esp_openthread_mainloop_context_t *mainloop); #if (CONFIG_ESP_COEX_SW_COEXIST_ENABLE || CONFIG_EXTERNAL_COEX_ENABLE) /** * @brief Set the coexist config. * * @param[in] config The config of coexist. * *//* ... */ void esp_openthread_set_coex_config(esp_ieee802154_coex_config_t config); /** * @brief Get the coexist config. * * @return * - The config of coexist. * *//* ... */ esp_ieee802154_coex_config_t esp_openthread_get_coex_config(void);/* ... */ #endif #ifdef __cplusplus }{...} #endif
Details