Select one of the symbols to view example projects that use it.
 
Outline
#include "sdkconfig.h"
#include "esp_openthread_types.h"
esp_openthread_register_rcp_failure_handler(esp_openthread_rcp_failure_handler);
esp_openthread_set_compatibility_error_callback(esp_openthread_compatibility_error_callback);
esp_openthread_rcp_deinit();
esp_openthread_rcp_init();
esp_openthread_rcp_version_set(const char *);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/openthread/include/esp_openthread_spinel.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2025 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once #include "sdkconfig.h" #include "esp_openthread_types.h" #ifdef __cplusplus extern "C" { #endif /** * @brief Registers the callback for RCP failure. * *//* ... */ void esp_openthread_register_rcp_failure_handler(esp_openthread_rcp_failure_handler handler); /** * @brief Registers the callback for spinel compatibility error. * * @note This function should be called before esp_openthread_init. * * @param[in] callback The callback. * *//* ... */ void esp_openthread_set_compatibility_error_callback(esp_openthread_compatibility_error_callback callback); /** * @brief Deinitializes the connection to RCP. * * @return * - ESP_OK on success * - ESP_ERR_INVALID_STATE if fail to deinitialize RCP * *//* ... */ esp_err_t esp_openthread_rcp_deinit(void); /** * @brief Initializes the connection to RCP. * * @return * - ESP_OK on success * - ESP_FAIL if fail to initialize RCP * *//* ... */ esp_err_t esp_openthread_rcp_init(void); /** * @brief Set the RCP version string. * * @note This function should be called before esp_openthread_init. When the RCP version string is not an empty string, * compatibility checks will be performed during the initialization of the ESP OpenThread radio spinel. * The `esp_openthread_compatibility_error_callback` will be triggered if the desired RCP version does not match * the actual version running on the RCP. If needed, a NULL parameter can be passed to clear the version string. * * @param[in] version_str The pointer to RCP version string. * * @return * - ESP_OK on success * - ESP_FAIL if fail to set RCP version string * *//* ... */ esp_err_t esp_openthread_rcp_version_set(const char *version_str); #ifdef __cplusplus }{...} #endif
Details