mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
88 lines
2.4 KiB
C
88 lines
2.4 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2021-2023 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: CC0-1.0
|
|
*
|
|
* OpenThread Radio Co-Processor (RCP) Example
|
|
*
|
|
* This example code is in the Public Domain (or CC0-1.0 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.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
#include "esp_event.h"
|
|
#include "nvs_flash.h"
|
|
#include "esp_openthread.h"
|
|
#include "esp_ot_config.h"
|
|
#include "esp_vfs_eventfd.h"
|
|
#include "driver/uart.h"
|
|
|
|
#if CONFIG_EXTERNAL_COEX_ENABLE
|
|
#include "esp_coexist.h"
|
|
#endif
|
|
|
|
#if !SOC_IEEE802154_SUPPORTED
|
|
#error "RCP is only supported for the SoCs which have IEEE 802.15.4 module"
|
|
#endif
|
|
|
|
#define TAG "ot_esp_rcp"
|
|
|
|
extern void otAppNcpInit(otInstance *instance);
|
|
|
|
#if CONFIG_EXTERNAL_COEX_ENABLE
|
|
#if SOC_EXTERNAL_COEX_ADVANCE
|
|
static void ot_external_coexist_init(void)
|
|
{
|
|
esp_external_coex_gpio_set_t gpio_pin = ESP_OPENTHREAD_DEFAULT_EXTERNAL_COEX_CONFIG();
|
|
esp_external_coex_set_work_mode(EXTERNAL_COEX_FOLLOWER_ROLE);
|
|
ESP_ERROR_CHECK(esp_enable_extern_coex_gpio_pin(CONFIG_EXTERNAL_COEX_WIRE_TYPE, gpio_pin));
|
|
}
|
|
#endif // SOC_EXTERNAL_COEX_ADVANCE
|
|
#endif // CONFIG_EXTERNAL_COEX_ENABLE
|
|
|
|
static void ot_task_worker(void *aContext)
|
|
{
|
|
esp_openthread_platform_config_t config = {
|
|
.radio_config = ESP_OPENTHREAD_DEFAULT_RADIO_CONFIG(),
|
|
.host_config = ESP_OPENTHREAD_DEFAULT_HOST_CONFIG(),
|
|
.port_config = ESP_OPENTHREAD_DEFAULT_PORT_CONFIG(),
|
|
};
|
|
|
|
// Initialize the OpenThread stack
|
|
ESP_ERROR_CHECK(esp_openthread_init(&config));
|
|
|
|
#if CONFIG_EXTERNAL_COEX_ENABLE
|
|
ot_external_coexist_init();
|
|
#endif // CONFIG_EXTERNAL_COEX_ENABLE
|
|
|
|
// Initialize the OpenThread ncp
|
|
otAppNcpInit(esp_openthread_get_instance());
|
|
|
|
// Run the main loop
|
|
esp_openthread_launch_mainloop();
|
|
|
|
// Clean up
|
|
esp_vfs_eventfd_unregister();
|
|
vTaskDelete(NULL);
|
|
}
|
|
|
|
void app_main(void)
|
|
{
|
|
// Used eventfds:
|
|
// * ot task queue
|
|
// * radio driver
|
|
esp_vfs_eventfd_config_t eventfd_config = {
|
|
.max_fds = 2,
|
|
};
|
|
|
|
ESP_ERROR_CHECK(nvs_flash_init());
|
|
ESP_ERROR_CHECK(esp_event_loop_create_default());
|
|
ESP_ERROR_CHECK(esp_vfs_eventfd_register(&eventfd_config));
|
|
xTaskCreate(ot_task_worker, "ot_rcp_main", 3072, xTaskGetCurrentTaskHandle(), 5, NULL);
|
|
}
|