2021-09-07 05:37:47 -04:00
|
|
|
/*
|
2022-04-25 09:45:19 -04:00
|
|
|
* SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
|
2021-09-07 05:37:47 -04:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2021-06-07 04:13:58 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "esp_netif.h"
|
|
|
|
#include "esp_netif_types.h"
|
|
|
|
#include "esp_openthread.h"
|
2021-06-17 03:44:19 -04:00
|
|
|
#include "openthread/instance.h"
|
2021-06-07 04:13:58 -04:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2021-09-07 05:37:47 -04:00
|
|
|
/**
|
|
|
|
* @brief Sets the backbone interface used for border routing.
|
|
|
|
*
|
|
|
|
* @note This function must be called before esp_openthread_init
|
|
|
|
*
|
|
|
|
* @param[in] backbone_netif The backbone network interface (WiFi or ethernet)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void esp_openthread_set_backbone_netif(esp_netif_t *backbone_netif);
|
|
|
|
|
2021-06-07 04:13:58 -04:00
|
|
|
/**
|
|
|
|
* @brief Initializes the border router features of OpenThread.
|
|
|
|
*
|
|
|
|
* @note Calling this function will make the device behave as an OpenThread
|
|
|
|
* border router. Kconfig option CONFIG_OPENTHREAD_BORDER_ROUTER is required.
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* - ESP_OK on success
|
|
|
|
* - ESP_ERR_NOT_SUPPORTED if feature not supported
|
2021-06-17 03:44:19 -04:00
|
|
|
* - ESP_ERR_INVALID_STATE if already initialized
|
|
|
|
* - ESP_FIAL on other failures
|
2021-06-07 04:13:58 -04:00
|
|
|
*
|
|
|
|
*/
|
2021-09-07 05:37:47 -04:00
|
|
|
esp_err_t esp_openthread_border_router_init(void);
|
2021-06-07 04:13:58 -04:00
|
|
|
|
2021-06-17 03:44:19 -04:00
|
|
|
/**
|
|
|
|
* @brief Deinitializes the border router features of OpenThread.
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* - ESP_OK on success
|
|
|
|
* - ESP_ERR_INVALID_STATE if not initialized
|
|
|
|
* - ESP_FIAL on other failures
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
esp_err_t esp_openthread_border_router_deinit(void);
|
|
|
|
|
2021-06-07 04:13:58 -04:00
|
|
|
/**
|
|
|
|
* @brief Gets the backbone interface of OpenThread border router.
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* The backbone interface or NULL if border router not initialized.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
esp_netif_t *esp_openthread_get_backbone_netif(void);
|
|
|
|
|
2022-03-02 05:04:38 -05:00
|
|
|
/**
|
|
|
|
* @brief Registers the callback for RCP failure.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void esp_openthread_register_rcp_failure_handler(esp_openthread_rcp_failure_handler handler);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Deinitializes the conneciton to RCP.
|
|
|
|
*
|
|
|
|
*/
|
2022-04-25 09:45:19 -04:00
|
|
|
void esp_openthread_rcp_deinit(void);
|
2022-03-02 05:04:38 -05:00
|
|
|
|
2021-06-07 04:13:58 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|