Merge branch 'bugfix/efuse_logs' into 'master'

esp32/esp32s2: Reduce using ESP_EARLY_LOGx and move some code after the stdout initialization in startup code

Closes IDFGH-3367

See merge request espressif/esp-idf!8904
This commit is contained in:
Angus Gratton
2020-06-16 13:47:02 +08:00
4 changed files with 27 additions and 25 deletions
@@ -72,7 +72,7 @@ void esp_efuse_disable_basic_rom_console(void)
{
if (!esp_efuse_read_field_bit(ESP_EFUSE_CONSOLE_DEBUG_DISABLE)) {
esp_efuse_write_field_cnt(ESP_EFUSE_CONSOLE_DEBUG_DISABLE, 1);
ESP_EARLY_LOGI(TAG, "Disable BASIC ROM Console fallback via efuse...");
ESP_LOGI(TAG, "Disable BASIC ROM Console fallback via efuse...");
}
}