From 1e695c43f2842f00d353f795c74474a6f95c0ff3 Mon Sep 17 00:00:00 2001 From: Shubham Patil Date: Mon, 17 Jan 2022 21:57:01 +0530 Subject: [PATCH] Review comments --- examples/lighting-app/esp32/README.md | 6 ------ .../ota-provider-app/esp32/main/OTAProviderCommands.cpp | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/examples/lighting-app/esp32/README.md b/examples/lighting-app/esp32/README.md index 193559246e9640..21c60e2e39ffe9 100644 --- a/examples/lighting-app/esp32/README.md +++ b/examples/lighting-app/esp32/README.md @@ -157,12 +157,6 @@ type below query. >matter ota query 1 12346 0 ``` -Alternate way to query an OTA image using chip-tool - -``` -./out/debug/chip-tool otasoftwareupdaterequestor announce-ota-provider 12346 0 0 0 12345 0 -``` - ## Apply update Once the transfer is complete OTA requestor sends ApplyUpdateRequest command to diff --git a/examples/ota-provider-app/esp32/main/OTAProviderCommands.cpp b/examples/ota-provider-app/esp32/main/OTAProviderCommands.cpp index 86ba7ce98feac7..e1a5f0c0b3561b 100644 --- a/examples/ota-provider-app/esp32/main/OTAProviderCommands.cpp +++ b/examples/ota-provider-app/esp32/main/OTAProviderCommands.cpp @@ -71,7 +71,7 @@ void OTAProviderCommands::Register() sSubShell.RegisterCommands(subCommands, ArraySize(subCommands)); - // Register the root `ota` command in the top-level shell. + // Register the root `OTA Provider` command in the top-level shell. static const shell_command_t otaProviderCommand = { &OTAProviderHandler, "OTAProvider", "OTA Provider commands" }; Engine::Root().RegisterCommands(&otaProviderCommand, 1);