/* * SPDX-FileCopyrightText: 2021-2025 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */#pragmaonce#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__cplusplusextern"C"{#endif/** * @brief This function initializes the OpenThread radio. * * @return * - ESP_OK on success * - ESP_ERR_NO_MEM if allocation has failed * *//* ... */esp_err_tesp_openthread_radio_init(constesp_openthread_platform_config_t*config);/** * @brief This function deinitializes the OpenThread radio. * *//* ... */voidesp_openthread_radio_deinit(void);/** * @brief This function updates the radio fds and timeouts to the main loop. * * @param[inout] mainloop The main loop context. * *//* ... */voidesp_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_tesp_openthread_radio_process(otInstance*instance,constesp_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. * *//* ... */voidesp_openthread_set_coex_config(esp_ieee802154_coex_config_tconfig);/** * @brief Get the coexist config. * * @return * - The config of coexist. * *//* ... */esp_ieee802154_coex_config_tesp_openthread_get_coex_config(void);/* ... */#endif#ifdef__cplusplus}{...}#endif
Details
Show: from
Types: Columns:
All items filtered out
All items filtered out
This file uses the notable symbols shown below. Click anywhere in the file to view more details.