| /* |
| * |
| * Copyright (c) 2024 Project CHIP Authors |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| #include "app/icd/server/ICDNotifier.h" |
| #include "esp_log.h" |
| #include "esp_netif.h" |
| #include "esp_system.h" |
| #include "esp_wifi.h" |
| #include "freertos/FreeRTOS.h" |
| #include "freertos/task.h" |
| #include "nvs_flash.h" |
| |
| #include <DeviceCallbacks.h> |
| #include <IcdUatButton.h> |
| #include <app/icd/server/ICDManager.h> |
| #include <app/server/Server.h> |
| #include <common/CHIPDeviceManager.h> |
| #include <common/Esp32AppServer.h> |
| #include <common/Esp32ThreadInit.h> |
| #include <credentials/DeviceAttestationCredsProvider.h> |
| #include <credentials/examples/DeviceAttestationCredsExample.h> |
| #include <platform/ESP32/ESP32Utils.h> |
| #include <platform/PlatformManager.h> |
| |
| #if CONFIG_ENABLE_ESP32_FACTORY_DATA_PROVIDER |
| #include <platform/ESP32/ESP32FactoryDataProvider.h> |
| #endif // CONFIG_ENABLE_ESP32_FACTORY_DATA_PROVIDER |
| |
| #if CONFIG_ENABLE_ESP32_DEVICE_INFO_PROVIDER |
| #include <platform/ESP32/ESP32DeviceInfoProvider.h> |
| #else |
| #include <DeviceInfoProviderImpl.h> |
| #endif // CONFIG_ENABLE_ESP32_DEVICE_INFO_PROVIDER |
| |
| namespace { |
| #if CONFIG_ENABLE_ESP32_FACTORY_DATA_PROVIDER |
| chip::DeviceLayer::ESP32FactoryDataProvider sFactoryDataProvider; |
| #endif // CONFIG_ENABLE_ESP32_FACTORY_DATA_PROVIDER |
| |
| #if CONFIG_ENABLE_ESP32_DEVICE_INFO_PROVIDER |
| chip::DeviceLayer::ESP32DeviceInfoProvider gExampleDeviceInfoProvider; |
| #else |
| chip::DeviceLayer::DeviceInfoProviderImpl gExampleDeviceInfoProvider; |
| #endif // CONFIG_ENABLE_ESP32_DEVICE_INFO_PROVIDER |
| } // namespace |
| |
| #if !CHIP_DEVICE_CONFIG_ENABLE_THREAD |
| #error "Currently this example only support Thread chips" |
| #endif |
| |
| #ifdef CONFIG_IDF_TARGET_ESP32H2 |
| // GPIO9-GPIO14 could be used to wake up ESP32-H2. |
| // For ESP32-H2 DevKitM, the boot button is GPIO9. |
| #define UAT_GPIO GPIO_NUM_9 |
| #elif defined(CONFIG_IDF_TARGET_ESP32C6) |
| // GPIO0-GPIO7 could be used to wake up ESP32-C6. |
| // For ESP32-C6 DevKitC, the boot button is GPIO9, we cannot use it to wake up the chip. |
| #define UAT_GPIO GPIO_NUM_7 |
| #else |
| #error "Unsupport IDF target" |
| #endif |
| |
| using namespace ::chip; |
| using namespace ::chip::DeviceManager; |
| using namespace ::chip::Credentials; |
| |
| extern const char TAG[] = "lit-icd-app"; |
| |
| static AppDeviceCallbacks EchoCallbacks; |
| |
| static void UatButtonHandler(UatButton * button) |
| { |
| DeviceLayer::PlatformMgr().ScheduleWork([](intptr_t) { app::ICDNotifier::GetInstance().NotifyNetworkActivityNotification(); }); |
| } |
| |
| static void InitServer(intptr_t context) |
| { |
| Esp32AppServer::Init(); // Init ZCL Data Model and CHIP App Server AND Initialize device attestation config |
| } |
| |
| extern "C" void app_main() |
| { |
| ESP_LOGI(TAG, "LIT ICD example"); |
| |
| // Initialize the ESP NVS layer. |
| esp_err_t err = nvs_flash_init(); |
| if (err != ESP_OK) |
| { |
| ESP_LOGE(TAG, "nvs_flash_init() failed: %s", esp_err_to_name(err)); |
| return; |
| } |
| err = esp_event_loop_create_default(); |
| if (err != ESP_OK) |
| { |
| ESP_LOGE(TAG, "esp_event_loop_create_default() failed: %s", esp_err_to_name(err)); |
| return; |
| } |
| |
| DeviceLayer::SetDeviceInfoProvider(&gExampleDeviceInfoProvider); |
| |
| CHIPDeviceManager & deviceMgr = CHIPDeviceManager::GetInstance(); |
| |
| CHIP_ERROR error = deviceMgr.Init(&EchoCallbacks); |
| if (error != CHIP_NO_ERROR) |
| { |
| ESP_LOGE(TAG, "device.Init() failed: %" CHIP_ERROR_FORMAT, error.Format()); |
| return; |
| } |
| |
| #if CONFIG_ENABLE_ESP32_FACTORY_DATA_PROVIDER |
| SetCommissionableDataProvider(&sFactoryDataProvider); |
| SetDeviceAttestationCredentialsProvider(&sFactoryDataProvider); |
| #if CONFIG_ENABLE_ESP32_DEVICE_INSTANCE_INFO_PROVIDER |
| SetDeviceInstanceInfoProvider(&sFactoryDataProvider); |
| #endif |
| #else |
| SetDeviceAttestationCredentialsProvider(Examples::GetExampleDACProvider()); |
| #endif // CONFIG_ENABLE_ESP32_FACTORY_DATA_PROVIDER |
| ESPOpenThreadInit(); |
| static UatButton sButton; |
| sButton.Init(UAT_GPIO, ESP_EXT1_WAKEUP_ANY_LOW); |
| sButton.SetUatButtonPressCallback(UatButtonHandler); |
| |
| chip::DeviceLayer::PlatformMgr().ScheduleWork(InitServer, reinterpret_cast<intptr_t>(nullptr)); |
| } |