/* * * Copyright (c) 2021 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 "DeviceCallbacks.h" #include "esp_heap_caps_init.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 #include #include #include #include #include #include #include #include #include "OTAImageProcessorImpl.h" #if CONFIG_ENABLE_PW_RPC #include "Rpc.h" #endif #if CONFIG_ENABLE_ESP32_FACTORY_DATA_PROVIDER #include #endif // CONFIG_ENABLE_ESP32_FACTORY_DATA_PROVIDER #if CONFIG_ENABLE_ESP32_DEVICE_INFO_PROVIDER #include #else #include #endif // CONFIG_ENABLE_ESP32_DEVICE_INFO_PROVIDER using namespace ::chip; using namespace ::chip::System; using namespace ::chip::DeviceManager; using namespace chip::Shell; using namespace ::chip::Credentials; namespace { extern const char TAG[] = "ota-requester-app"; static AppDeviceCallbacks EchoCallbacks; constexpr EndpointId kNetworkCommissioningEndpointSecondary = 0xFFFE; static void InitServer(intptr_t context) { // Print QR Code URL PrintOnboardingCodes(chip::RendezvousInformationFlags(CONFIG_RENDEZVOUS_MODE)); Esp32AppServer::Init(); // Init ZCL Data Model and CHIP App Server AND Initialize device attestation config // We only have network commissioning on endpoint 0. emberAfEndpointEnableDisable(kNetworkCommissioningEndpointSecondary, false); } #if CONFIG_ENABLE_ESP32_FACTORY_DATA_PROVIDER DeviceLayer::ESP32FactoryDataProvider sFactoryDataProvider; #endif // CONFIG_ENABLE_ESP32_FACTORY_DATA_PROVIDER #if CONFIG_ENABLE_ESP32_DEVICE_INFO_PROVIDER DeviceLayer::ESP32DeviceInfoProvider gExampleDeviceInfoProvider; #else DeviceLayer::DeviceInfoProviderImpl gExampleDeviceInfoProvider; #endif // CONFIG_ENABLE_ESP32_DEVICE_INFO_PROVIDER void OTAEventsHandler(const DeviceLayer::ChipDeviceEvent * event, intptr_t arg) { if (event->Type == DeviceLayer::DeviceEventType::kOtaStateChanged) { switch (event->OtaStateChanged.newState) { case DeviceLayer::kOtaDownloadInProgress: ChipLogProgress(DeviceLayer, "OTA image download in progress"); break; case DeviceLayer::kOtaDownloadComplete: ChipLogProgress(DeviceLayer, "OTA image download complete"); break; case DeviceLayer::kOtaDownloadFailed: ChipLogProgress(DeviceLayer, "OTA image download failed"); break; case DeviceLayer::kOtaDownloadAborted: ChipLogProgress(DeviceLayer, "OTA image download aborted"); break; case DeviceLayer::kOtaApplyInProgress: ChipLogProgress(DeviceLayer, "OTA image apply in progress"); break; case DeviceLayer::kOtaApplyComplete: ChipLogProgress(DeviceLayer, "OTA image apply complete"); break; case DeviceLayer::kOtaApplyFailed: ChipLogProgress(DeviceLayer, "OTA image apply failed"); break; default: break; } } } } // namespace extern "C" void app_main() { #if CONFIG_ENABLE_PW_RPC chip::rpc::Init(); #endif ESP_LOGI(TAG, "OTA Requester!"); // 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; } #if CONFIG_ENABLE_CHIP_SHELL chip::LaunchShell(); OTARequestorCommands::GetInstance().Register(); #endif // CONFIG_ENABLE_CHIP_SHELL #if CHIP_DEVICE_CONFIG_ENABLE_WIFI if (DeviceLayer::Internal::ESP32Utils::InitWiFiStack() != CHIP_NO_ERROR) { ESP_LOGE(TAG, "Failed to initialize Wi-Fi stack"); return; } #endif // CHIP_DEVICE_CONFIG_ENABLE_WIFI 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 chip::DeviceLayer::PlatformMgr().ScheduleWork(InitServer, reinterpret_cast(nullptr)); chip::DeviceLayer::PlatformMgrImpl().AddEventHandler(OTAEventsHandler, reinterpret_cast(nullptr)); }