Skip to content

Commit

Permalink
efuse/esp32: Fix get_coding_scheme() when CONFIG_SECURE_FLASH_ENC_ENA…
Browse files Browse the repository at this point in the history
…BLED and LOG_LEVEL is Debug

Closes: #4862
  • Loading branch information
KonstantinKondrashov committed Apr 15, 2020
1 parent b3410b9 commit f59ef5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/efuse/src/esp32/esp_efuse_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,6 @@ esp_efuse_coding_scheme_t esp_efuse_get_coding_scheme(esp_efuse_block_t blk)
scheme = EFUSE_CODING_SCHEME_REPEAT;
}
}
ESP_LOGD(TAG, "coding scheme %d", scheme);
ESP_EARLY_LOGD(TAG, "coding scheme %d", scheme);
return scheme;
}

0 comments on commit f59ef5e

Please sign in to comment.