Skip to content

How to avoid output boot on ESP32 #182

Closed Locked Answered by luc-github
luc-github asked this question in F.A.Q
Discussion options

You must be logged in to vote

On ESP32-S3

the pin is the GPIO46 - but need a preset in efuse which cannot be changed when done check documentation and here page 22/23

so use :

#include <esp_efuse.h>
esp_efuse_set_rom_log_scheme(ESP_EFUSE_ROM_LOG_ON_GPIO_HIGH);

so I may add an [ESPXXX] command for this for S3

ESP32-S2

the pin is the GPIO46 and need same efuse setting as above

ESP32-C3

the pin is the GPIO8 and need same efuse setting as above

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by luc-github
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
F.A.Q
Labels
1 participant
Converted from issue

This discussion was converted from issue #182 on December 11, 2020 08:27.