From ceae7792bfc2b286d5aa381f598737fba9a99642 Mon Sep 17 00:00:00 2001 From: Konstantin Kondrashov Date: Wed, 11 Feb 2026 16:11:00 +0200 Subject: [PATCH] fix(efuse): erase virtual blocks before burn in damaged-reading test Some chip may have BLOCK3 in use so we need to erase it before test. --- components/efuse/test_apps/main/test_efuse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/efuse/test_apps/main/test_efuse.c b/components/efuse/test_apps/main/test_efuse.c index 4aa63356f2..130b0fe52a 100644 --- a/components/efuse/test_apps/main/test_efuse.c +++ b/components/efuse/test_apps/main/test_efuse.c @@ -739,7 +739,7 @@ static void efuse_burn_task(void* arg) ESP_LOGI(TAG, "Start burn task"); size_t test3_len_6 = 2; while (!cmd_stop_reset_task1) { - esp_efuse_utility_update_virt_blocks(); + esp_efuse_utility_erase_virt_blocks(); esp_efuse_utility_reset(); TEST_ESP_OK(esp_efuse_write_field_cnt(ESP_EFUSE_TEST3_LEN_6, test3_len_6)); }