2021-10-20 04:48:09 -04:00
|
|
|
/*
|
2022-01-04 07:45:37 -05:00
|
|
|
* SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
|
2021-10-20 04:48:09 -04:00
|
|
|
*
|
2021-12-01 22:43:44 -05:00
|
|
|
* SPDX-License-Identifier: CC0-1.0
|
2021-10-20 04:48:09 -04:00
|
|
|
*
|
|
|
|
* OpenThread Border Router Example
|
|
|
|
*
|
|
|
|
* This example code is in the Public Domain (or CC0 licensed, at your option.)
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, this
|
|
|
|
* software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
|
|
* CONDITIONS OF ANY KIND, either express or implied.
|
2022-05-30 03:53:11 -04:00
|
|
|
*/
|
2021-06-07 04:13:58 -04:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "esp_check.h"
|
|
|
|
#include "esp_err.h"
|
|
|
|
#include "esp_event.h"
|
|
|
|
#include "esp_log.h"
|
|
|
|
#include "esp_netif.h"
|
|
|
|
#include "esp_openthread.h"
|
|
|
|
#include "esp_openthread_border_router.h"
|
2021-09-27 00:10:00 -04:00
|
|
|
#include "esp_openthread_cli.h"
|
2021-06-07 04:13:58 -04:00
|
|
|
#include "esp_openthread_lock.h"
|
|
|
|
#include "esp_openthread_netif_glue.h"
|
|
|
|
#include "esp_openthread_types.h"
|
2022-05-30 03:53:11 -04:00
|
|
|
#include "esp_ot_cli_extension.h"
|
2021-07-09 00:18:41 -04:00
|
|
|
#include "esp_ot_config.h"
|
2022-05-30 03:53:11 -04:00
|
|
|
#include "esp_ot_wifi_cmd.h"
|
|
|
|
#include "esp_vfs_dev.h"
|
2021-06-07 04:13:58 -04:00
|
|
|
#include "esp_vfs_eventfd.h"
|
|
|
|
#include "esp_wifi.h"
|
2023-03-09 01:48:29 -05:00
|
|
|
#include "esp_coexist.h"
|
2021-06-17 03:44:19 -04:00
|
|
|
#include "mdns.h"
|
2021-06-07 04:13:58 -04:00
|
|
|
#include "nvs_flash.h"
|
|
|
|
#include "protocol_examples_common.h"
|
|
|
|
#include "sdkconfig.h"
|
|
|
|
#include "driver/uart.h"
|
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
#include "freertos/task.h"
|
|
|
|
#include "hal/uart_types.h"
|
|
|
|
#include "openthread/error.h"
|
2021-09-23 05:23:38 -04:00
|
|
|
#include "openthread/logging.h"
|
2021-06-07 04:13:58 -04:00
|
|
|
#include "openthread/tasklet.h"
|
|
|
|
|
|
|
|
#define TAG "esp_ot_br"
|
|
|
|
|
|
|
|
static void ot_task_worker(void *aContext)
|
|
|
|
{
|
|
|
|
esp_openthread_platform_config_t config = {
|
2021-07-09 00:18:41 -04:00
|
|
|
.radio_config = ESP_OPENTHREAD_DEFAULT_RADIO_CONFIG(),
|
|
|
|
.host_config = ESP_OPENTHREAD_DEFAULT_HOST_CONFIG(),
|
2021-06-28 07:20:51 -04:00
|
|
|
.port_config = ESP_OPENTHREAD_DEFAULT_PORT_CONFIG(),
|
2021-06-07 04:13:58 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
esp_netif_config_t cfg = ESP_NETIF_DEFAULT_OPENTHREAD();
|
2022-05-30 03:53:11 -04:00
|
|
|
esp_netif_t *openthread_netif = esp_netif_new(&cfg);
|
2021-06-07 04:13:58 -04:00
|
|
|
assert(openthread_netif != NULL);
|
2021-12-01 22:43:44 -05:00
|
|
|
|
2023-06-02 05:38:23 -04:00
|
|
|
// Initialize the OpenThread stack
|
2021-06-07 04:13:58 -04:00
|
|
|
ESP_ERROR_CHECK(esp_openthread_init(&config));
|
|
|
|
|
|
|
|
// Initialize border routing features
|
2021-09-07 05:37:47 -04:00
|
|
|
esp_openthread_lock_acquire(portMAX_DELAY);
|
2021-06-28 07:20:51 -04:00
|
|
|
ESP_ERROR_CHECK(esp_netif_attach(openthread_netif, esp_openthread_netif_glue_init(&config)));
|
2021-06-07 04:13:58 -04:00
|
|
|
|
2021-09-23 05:23:38 -04:00
|
|
|
(void)otLoggingSetLevel(CONFIG_LOG_DEFAULT_LEVEL);
|
2021-09-27 00:10:00 -04:00
|
|
|
esp_openthread_cli_init();
|
2023-06-02 05:38:23 -04:00
|
|
|
|
2021-12-01 22:43:44 -05:00
|
|
|
#if CONFIG_OPENTHREAD_BR_AUTO_START
|
|
|
|
ESP_ERROR_CHECK(esp_openthread_border_router_init());
|
2023-06-02 05:38:23 -04:00
|
|
|
ESP_ERROR_CHECK(esp_openthread_auto_start(NULL));
|
2021-12-01 22:43:44 -05:00
|
|
|
#endif // CONFIG_OPENTHREAD_BR_AUTO_START
|
2023-06-02 05:38:23 -04:00
|
|
|
|
2022-07-13 05:14:29 -04:00
|
|
|
esp_cli_custom_command_init();
|
2021-06-07 04:13:58 -04:00
|
|
|
esp_openthread_lock_release();
|
|
|
|
|
|
|
|
// Run the main loop
|
2021-09-27 00:10:00 -04:00
|
|
|
esp_openthread_cli_create_task();
|
2021-06-07 04:13:58 -04:00
|
|
|
esp_openthread_launch_mainloop();
|
|
|
|
|
|
|
|
// Clean up
|
|
|
|
esp_netif_destroy(openthread_netif);
|
|
|
|
esp_openthread_netif_glue_deinit();
|
|
|
|
esp_vfs_eventfd_unregister();
|
|
|
|
vTaskDelete(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void app_main(void)
|
|
|
|
{
|
|
|
|
// Used eventfds:
|
|
|
|
// * netif
|
|
|
|
// * task queue
|
2021-09-01 08:34:12 -04:00
|
|
|
// * border router
|
2021-06-07 04:13:58 -04:00
|
|
|
esp_vfs_eventfd_config_t eventfd_config = {
|
2023-01-04 04:29:06 -05:00
|
|
|
#if CONFIG_OPENTHREAD_RADIO_NATIVE
|
|
|
|
// * radio driver (A native radio device needs a eventfd for radio driver.)
|
|
|
|
.max_fds = 4,
|
|
|
|
#else
|
2021-09-01 08:34:12 -04:00
|
|
|
.max_fds = 3,
|
2023-01-04 04:29:06 -05:00
|
|
|
#endif
|
2021-06-07 04:13:58 -04:00
|
|
|
};
|
|
|
|
ESP_ERROR_CHECK(esp_vfs_eventfd_register(&eventfd_config));
|
|
|
|
|
|
|
|
ESP_ERROR_CHECK(nvs_flash_init());
|
|
|
|
ESP_ERROR_CHECK(esp_netif_init());
|
|
|
|
ESP_ERROR_CHECK(esp_event_loop_create_default());
|
2022-05-30 03:53:11 -04:00
|
|
|
|
2022-09-21 04:59:08 -04:00
|
|
|
#if CONFIG_EXAMPLE_CONNECT_WIFI
|
2021-12-01 22:43:44 -05:00
|
|
|
#if CONFIG_OPENTHREAD_BR_AUTO_START
|
2021-06-07 04:13:58 -04:00
|
|
|
ESP_ERROR_CHECK(example_connect());
|
2023-03-09 01:48:29 -05:00
|
|
|
#if CONFIG_ESP_COEX_SW_COEXIST_ENABLE && CONFIG_OPENTHREAD_RADIO_NATIVE
|
|
|
|
ESP_ERROR_CHECK(esp_wifi_set_ps(WIFI_PS_MIN_MODEM));
|
|
|
|
ESP_ERROR_CHECK(esp_coex_wifi_i154_enable());
|
|
|
|
#else
|
2021-06-07 04:13:58 -04:00
|
|
|
ESP_ERROR_CHECK(esp_wifi_set_ps(WIFI_PS_NONE));
|
2023-03-09 01:48:29 -05:00
|
|
|
#endif
|
2021-12-01 22:43:44 -05:00
|
|
|
esp_openthread_set_backbone_netif(get_example_netif());
|
|
|
|
#else
|
|
|
|
esp_ot_wifi_netif_init();
|
|
|
|
esp_openthread_set_backbone_netif(esp_netif_get_handle_from_ifkey("WIFI_STA_DEF"));
|
|
|
|
#endif // CONFIG_OPENTHREAD_BR_AUTO_START
|
2022-09-21 04:59:08 -04:00
|
|
|
#elif CONFIG_EXAMPLE_CONNECT_ETHERNET
|
|
|
|
ESP_ERROR_CHECK(example_connect());
|
|
|
|
esp_openthread_set_backbone_netif(get_example_netif());
|
|
|
|
#else
|
|
|
|
ESP_LOGE(TAG, "ESP-Openthread has not set backbone netif");
|
|
|
|
#endif // CONFIG_EXAMPLE_CONNECT_WIFI
|
|
|
|
|
2021-06-17 03:44:19 -04:00
|
|
|
ESP_ERROR_CHECK(mdns_init());
|
|
|
|
ESP_ERROR_CHECK(mdns_hostname_set("esp-ot-br"));
|
2021-06-07 04:13:58 -04:00
|
|
|
xTaskCreate(ot_task_worker, "ot_br_main", 20480, xTaskGetCurrentTaskHandle(), 5, NULL);
|
|
|
|
}
|