mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 19:13:13 +00:00
119 lines
4.5 KiB
C++
119 lines
4.5 KiB
C++
/*
|
|
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.
|
|
*/
|
|
|
|
#include <esp_err.h>
|
|
#include <esp_log.h>
|
|
#include <nvs_flash.h>
|
|
|
|
#include <esp_matter.h>
|
|
#include <esp_matter_console.h>
|
|
#include <esp_matter_controller_client.h>
|
|
#include <esp_matter_controller_console.h>
|
|
#include <esp_matter_controller_utils.h>
|
|
#include <esp_matter_ota.h>
|
|
#if CONFIG_OPENTHREAD_BORDER_ROUTER
|
|
#include <esp_openthread_border_router.h>
|
|
#include <esp_openthread_lock.h>
|
|
#include <esp_ot_config.h>
|
|
#include <esp_spiffs.h>
|
|
#include <platform/ESP32/OpenthreadLauncher.h>
|
|
#endif // CONFIG_OPENTHREAD_BORDER_ROUTER
|
|
#include <app_reset.h>
|
|
#include <common_macros.h>
|
|
|
|
#include <app/server/Server.h>
|
|
#include <credentials/FabricTable.h>
|
|
|
|
static const char *TAG = "app_main";
|
|
uint16_t switch_endpoint_id = 0;
|
|
|
|
using namespace esp_matter;
|
|
using namespace esp_matter::attribute;
|
|
using namespace esp_matter::endpoint;
|
|
|
|
static void app_event_cb(const ChipDeviceEvent *event, intptr_t arg)
|
|
{
|
|
switch (event->Type) {
|
|
case chip::DeviceLayer::DeviceEventType::PublicEventTypes::kInterfaceIpAddressChanged:
|
|
ESP_LOGI(TAG, "Interface IP Address changed");
|
|
break;
|
|
case chip::DeviceLayer::DeviceEventType::kESPSystemEvent:
|
|
if (event->Platform.ESPSystemEvent.Base == IP_EVENT &&
|
|
event->Platform.ESPSystemEvent.Id == IP_EVENT_STA_GOT_IP) {
|
|
#if CONFIG_OPENTHREAD_BORDER_ROUTER
|
|
static bool sThreadBRInitialized = false;
|
|
if (!sThreadBRInitialized) {
|
|
// TODO: Remove InitThreadStack() and StartThreadTask() if submodule contains the fix
|
|
// (https://github.com/project-chip/connectedhomeip/pull/37033)
|
|
if (chip::DeviceLayer::ThreadStackMgr().InitThreadStack() != CHIP_NO_ERROR ||
|
|
chip::DeviceLayer::ThreadStackMgr().StartThreadTask() != CHIP_NO_ERROR) {
|
|
break;
|
|
}
|
|
esp_openthread_set_backbone_netif(esp_netif_get_handle_from_ifkey("WIFI_STA_DEF"));
|
|
esp_openthread_lock_acquire(portMAX_DELAY);
|
|
esp_openthread_border_router_init();
|
|
esp_openthread_lock_release();
|
|
sThreadBRInitialized = true;
|
|
}
|
|
#endif
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
extern "C" void app_main()
|
|
{
|
|
esp_err_t err = ESP_OK;
|
|
|
|
/* Initialize the ESP NVS layer */
|
|
nvs_flash_init();
|
|
#if CONFIG_ENABLE_CHIP_SHELL
|
|
esp_matter::console::diagnostics_register_commands();
|
|
esp_matter::console::wifi_register_commands();
|
|
esp_matter::console::factoryreset_register_commands();
|
|
esp_matter::console::init();
|
|
#if CONFIG_ESP_MATTER_CONTROLLER_ENABLE
|
|
esp_matter::console::controller_register_commands();
|
|
#endif // CONFIG_ESP_MATTER_CONTROLLER_ENABLE
|
|
#ifdef CONFIG_OPENTHREAD_BORDER_ROUTER
|
|
esp_matter::console::otcli_register_commands();
|
|
#endif // CONFIG_OPENTHREAD_BORDER_ROUTER
|
|
#endif // CONFIG_ENABLE_CHIP_SHELL
|
|
#ifdef CONFIG_OPENTHREAD_BORDER_ROUTER
|
|
#ifdef CONFIG_AUTO_UPDATE_RCP
|
|
esp_vfs_spiffs_conf_t rcp_fw_conf = {
|
|
.base_path = "/rcp_fw", .partition_label = "rcp_fw", .max_files = 10, .format_if_mount_failed = false};
|
|
if (ESP_OK != esp_vfs_spiffs_register(&rcp_fw_conf)) {
|
|
ESP_LOGE(TAG, "Failed to mount rcp firmware storage");
|
|
return;
|
|
}
|
|
esp_rcp_update_config_t rcp_update_config = ESP_OPENTHREAD_RCP_UPDATE_CONFIG();
|
|
openthread_init_br_rcp(&rcp_update_config);
|
|
#endif
|
|
/* Set OpenThread platform config */
|
|
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(),
|
|
};
|
|
set_openthread_platform_config(&config);
|
|
#endif // CONFIG_OPENTHREAD_BORDER_ROUTER
|
|
/* Matter start */
|
|
err = esp_matter::start(app_event_cb);
|
|
ABORT_APP_ON_FAILURE(err == ESP_OK, ESP_LOGE(TAG, "Failed to start Matter, err:%d", err));
|
|
|
|
#if CONFIG_ESP_MATTER_COMMISSIONER_ENABLE
|
|
esp_matter::lock::chip_stack_lock(portMAX_DELAY);
|
|
esp_matter::controller::matter_controller_client::get_instance().init(112233, 1, 5580);
|
|
esp_matter::controller::matter_controller_client::get_instance().setup_commissioner();
|
|
esp_matter::lock::chip_stack_unlock();
|
|
#endif // CONFIG_ESP_MATTER_COMMISSIONER_ENABLE
|
|
}
|