ieee802154: support light sleep
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "esp_err.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_IEEE802154_SLEEP_ENABLE
|
||||
/**
|
||||
* @brief This function initializes the OpenThread sleep.
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK on success
|
||||
* - ESP_FAIL on failure
|
||||
*
|
||||
*/
|
||||
esp_err_t esp_openthread_sleep_init(void);
|
||||
|
||||
/**
|
||||
* @brief This function performs the OpenThread sleep process.
|
||||
*
|
||||
*/
|
||||
void esp_openthread_sleep_process(void);
|
||||
|
||||
/**
|
||||
* @brief This function performs the OpenThread wakeup process.
|
||||
*
|
||||
*/
|
||||
void esp_openthread_wakeup_process(void);
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
Reference in New Issue
Block a user