| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /*
- * SPDX-FileCopyrightText: 2021-2022 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 the OpenThread alarm.
- *
- * @return
- * -ESP_OK on success
- * -ESP_ERR_NO_MEM on allocation failure
- * -ESP_FAIL on other failures
- *
- */
- esp_err_t esp_openthread_alarm_init(void);
- /**
- * @brief This function deinitializes the OpenThread alarm.
- */
- void esp_openthread_alarm_deinit(void);
- /**
- * @brief Updates the file descriptor with the OpenThread alarm timeout.
- *
- * @param[inout] mainloop The main loop context.
- *
- */
- void esp_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_t esp_openthread_alarm_process(otInstance *instance, const esp_openthread_mainloop_context_t *mainloop);
- #ifdef __cplusplus
- }
- #endif
|