Browse Source

efuse: remove PVT_LOW field on esp32c2

PVT_LOW doesn't exist on ESP32C2
Armando 3 years ago
parent
commit
d0591f5aa9

+ 1 - 10
components/efuse/esp32c2/esp_efuse_table.c

@@ -9,7 +9,7 @@
 #include <assert.h>
 #include "esp_efuse_table.h"
 
-// md5_digest_table 5bc3d3149d5d4c75461337fa415d6533
+// md5_digest_table ce4e849361b72f5095735d37756740aa
 // This file was generated from the file esp_efuse_table.csv. DO NOT CHANGE THIS FILE MANUALLY.
 // If you want to change some fields, you need to change esp_efuse_table.csv file
 // then run `efuse_common_table` or `efuse_custom_table` command it will generate this file.
@@ -176,10 +176,6 @@ static const esp_efuse_desc_t BLK_VERSION_MAJOR[] = {
     {EFUSE_BLK2, 60, 2}, 	 // BLK_VERSION_MAJOR,
 };
 
-static const esp_efuse_desc_t PVT_LOW[] = {
-    {EFUSE_BLK2, 91, 5}, 	 // EFUSE_PVT_LOW,
-};
-
 static const esp_efuse_desc_t KEY0[] = {
     {EFUSE_BLK3, 0, 256}, 	 // [256bit FE key] or [128bit FE key and 128key SB key] or [user data],
 };
@@ -444,11 +440,6 @@ const esp_efuse_desc_t* ESP_EFUSE_BLK_VERSION_MAJOR[] = {
     NULL
 };
 
-const esp_efuse_desc_t* ESP_EFUSE_PVT_LOW[] = {
-    &PVT_LOW[0],    		// EFUSE_PVT_LOW
-    NULL
-};
-
 const esp_efuse_desc_t* ESP_EFUSE_KEY0[] = {
     &KEY0[0],    		// [256bit FE key] or [128bit FE key and 128key SB key] or [user data]
     NULL

+ 0 - 1
components/efuse/esp32c2/esp_efuse_table.csv

@@ -71,7 +71,6 @@
         BLK_VERSION_MAJOR,                    EFUSE_BLK2,   60,    2,     BLK_VERSION_MAJOR
 
     # EFUSE_RD_BLK2_DATA2_REG
-        PVT_LOW,                              EFUSE_BLK2,   91,    5,     EFUSE_PVT_LOW
 
 
 ################

+ 1 - 2
components/efuse/esp32c2/include/esp_efuse_table.h

@@ -10,7 +10,7 @@ extern "C" {
 
 #include "esp_efuse.h"
 
-// md5_digest_table 5bc3d3149d5d4c75461337fa415d6533
+// md5_digest_table ce4e849361b72f5095735d37756740aa
 // This file was generated from the file esp_efuse_table.csv. DO NOT CHANGE THIS FILE MANUALLY.
 // If you want to change some fields, you need to change esp_efuse_table.csv file
 // then run `efuse_common_table` or `efuse_custom_table` command it will generate this file.
@@ -56,7 +56,6 @@ extern const esp_efuse_desc_t* ESP_EFUSE_WAFER_VERSION_MAJOR[];
 extern const esp_efuse_desc_t* ESP_EFUSE_PKG_VERSION[];
 extern const esp_efuse_desc_t* ESP_EFUSE_BLK_VERSION_MINOR[];
 extern const esp_efuse_desc_t* ESP_EFUSE_BLK_VERSION_MAJOR[];
-extern const esp_efuse_desc_t* ESP_EFUSE_PVT_LOW[];
 extern const esp_efuse_desc_t* ESP_EFUSE_KEY0[];
 extern const esp_efuse_desc_t* ESP_EFUSE_KEY0_FE_256BIT[];
 extern const esp_efuse_desc_t* ESP_EFUSE_KEY0_FE_128BIT[];