Skip to content

Commit 1167e5a

Browse files
committed
Fix build on IDF 5.5
1 parent a60eda2 commit 1167e5a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

main/device_information.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ esp_err_t read_device_identity(device_identity_t* out_identity) {
5656
return res;
5757
}
5858

59-
#if ESP_IDF_VERSION_MAJOR >= 5 && ESP_IDF_VERSION_MINOR >= 5
59+
#if ESP_IDF_VERSION_MAJOR >= 5 && ESP_IDF_VERSION_MINOR >= 6
6060
res = esp_efuse_read_field_blob(ESP_EFUSE_WAFER_VERSION_MAJOR_LO, &out_identity->waver_rev_major, 2);
6161
if (res != ESP_OK) {
6262
return res;

0 commit comments

Comments
 (0)