/* * SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */#pragmaonce#include"esp_err.h"#include"esp_openthread_types.h"#include"openthread/instance.h"#ifdef__cplusplusextern"C"{#endif/** * @brief Initializes the OpenThread alarm. * * @return * -ESP_OK on success * -ESP_ERR_NO_MEM on allocation failure * -ESP_FAIL on other failures * *//* ... */esp_err_tesp_openthread_alarm_init(void);/** * @brief This function deinitializes the OpenThread alarm. *//* ... */voidesp_openthread_alarm_deinit(void);/** * @brief Updates the file descriptor with the OpenThread alarm timeout. * * @param[inout] mainloop The main loop context. * *//* ... */voidesp_openthread_alarm_update(esp_openthread_mainloop_context_t*mainloop);/** * @brief Performs the alarm process and triggers the fired timers for OpenThread. * * @param[in] instance The OpenThread instance. * @param[in] mainloop The main loop context. * * return * - ESP_OK on success * - ESP_ERROR on other failures * *//* ... */esp_err_tesp_openthread_alarm_process(otInstance*instance,constesp_openthread_mainloop_context_t*mainloop);#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.