From edb53c1a85367d8890c548d2a9a61c553487c6ee Mon Sep 17 00:00:00 2001 From: Marcel Petrick Date: Tue, 20 Jun 2023 16:39:07 +0200 Subject: [PATCH] esp_ota_ops.h: typo fix --- components/app_update/include/esp_ota_ops.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/app_update/include/esp_ota_ops.h b/components/app_update/include/esp_ota_ops.h index 362fa1d22b..c58c3e4925 100644 --- a/components/app_update/include/esp_ota_ops.h +++ b/components/app_update/include/esp_ota_ops.h @@ -352,7 +352,7 @@ typedef enum { /** * @brief Revokes the old signature digest. To be called in the application after the rollback logic. * - * Relevant for Secure boot v2 on ESP32-S2, ESP32-S3, ESP32-C3, ESP32-C6, ESP32-H2 where upto 3 key digests can be stored (Key \#N-1, Key \#N, Key \#N+1). + * Relevant for Secure boot v2 on ESP32-S2, ESP32-S3, ESP32-C3, ESP32-C6, ESP32-H2 where up to 3 key digests can be stored (Key \#N-1, Key \#N, Key \#N+1). * When key \#N-1 used to sign an app is invalidated, an OTA update is to be sent with an app signed with key \#N-1 & Key \#N. * After successfully booting the OTA app should call this function to revoke Key \#N-1. *