Select one of the symbols to view example projects that use it.
 
Outline
#include "esp_err.h"
#include "esp_openthread_types.h"
#include "openthread/instance.h"
esp_openthread_uart_init_port(const esp_openthread_uart_config_t *);
esp_openthread_host_cli_uart_init(const esp_openthread_platform_config_t *);
esp_openthread_host_cli_usb_init(const esp_openthread_platform_config_t *);
esp_openthread_host_rcp_uart_init(const esp_openthread_platform_config_t *);
esp_openthread_uart_deinit();
esp_openthread_uart_update(esp_openthread_mainloop_context_t *);
esp_openthread_uart_process(otInstance *, const esp_openthread_mainloop_context_t *);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/openthread/private_include/esp_openthread_uart.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
84
85
86
87
88
89
90
91
92
93
94
95
96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2021-2023 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once #include "esp_err.h" #include "esp_openthread_types.h" #include "openthread/instance.h" #ifdef __cplusplus extern "C" { #endif /** * @brief Initializes an uart port with the given config. * * @note The user still needs to open the file descriptor by self. * * @param[in] config The uart configuration. * * @return * - ESP_OK on success * - ESP_ERROR on failure * *//* ... */ esp_err_t esp_openthread_uart_init_port(const esp_openthread_uart_config_t *config); /** * @brief Initializes the console UART for OpenThread host connection. * * @param[in] config The platform configuration. * * @return * - ESP_OK on success * - ESP_ERROR on failure * *//* ... */ esp_err_t esp_openthread_host_cli_uart_init(const esp_openthread_platform_config_t *config); /** * @brief Initializes the console USB JTAG for OpenThread host connection. * * @param[in] config The platform configuration. * * @return * - ESP_OK on success * - ESP_ERROR on failure * *//* ... */ esp_err_t esp_openthread_host_cli_usb_init(const esp_openthread_platform_config_t *config); /** * @brief Initializes the RCP UART for OpenThread host connection. * * @param[in] config The platform configuration. * * @return * - ESP_OK on success * - ESP_ERROR on failure * *//* ... */ esp_err_t esp_openthread_host_rcp_uart_init(const esp_openthread_platform_config_t *config); /** * @brief Deintializes the uart for OpenThread host connection. * *//* ... */ void esp_openthread_uart_deinit(void); /** * @brief Deintializes the uart for OpenThread host connection. * * @param[inout] mainloop The main loop context. * *//* ... */ void esp_openthread_uart_update(esp_openthread_mainloop_context_t *context); /** * @brief Performs the uart I/O for OpenThread. * * @param[in] instance The Openthread instance. * @param[in] mainloop The main loop context. * * @return * - ESP_OK on success * - ESP_ERROR on failure * *//* ... */ esp_err_t esp_openthread_uart_process(otInstance *instance, const esp_openthread_mainloop_context_t *mainloop); #ifdef __cplusplus }{...} #endif
Details