feat(efuse): Allow custom key purposes

This commit is contained in:
Konstantin Kondrashov
2025-07-24 16:29:46 +03:00
committed by BOT
parent 4339a7eafb
commit 9e07bb10a0
11 changed files with 11 additions and 11 deletions

View File

@@ -71,7 +71,7 @@ typedef enum {
ESP_EFUSE_KEY_PURPOSE_SECURE_BOOT_DIGEST0 = 9, /**< SECURE_BOOT_DIGEST0 (Secure Boot key digest) */
ESP_EFUSE_KEY_PURPOSE_SECURE_BOOT_DIGEST1 = 10, /**< SECURE_BOOT_DIGEST1 (Secure Boot key digest) */
ESP_EFUSE_KEY_PURPOSE_SECURE_BOOT_DIGEST2 = 11, /**< SECURE_BOOT_DIGEST2 (Secure Boot key digest) */
ESP_EFUSE_KEY_PURPOSE_MAX, /**< MAX PURPOSE */
ESP_EFUSE_KEY_PURPOSE_MAX = 16, /**< MAX PURPOSE */
} esp_efuse_purpose_t;
#ifdef __cplusplus