Was sind die verschiedenen Werte für den ESP32-S2 UART_PRINT_CONTROL eFuse?
Der ESP32-S2 UART_PRINT_CONTROL eFuse steuert das Verhalten der UART-Print-Ausgabe während der ROM-Boot-Phase. Gemäß ESP-IDF auf GitHub besteht er aus zwei Bits:
00: Aktiviert01: Aktiviert, wenn GPIO46 beim Reset low ist10: Aktiviert, wenn GPIO46 beim Reset high ist11: Deaktiviert
Das Brennen kann nicht rückgängig gemacht werden, aber wenn Sie es wirklich tun wollen, hier ist ein Beispiel, wie man es auf 0b11 brennt:
burn_uart_print_control.sh
espefuse.py burn_efuse UART_PRINT_CONTROL 0b11Dies wird Sie vor dem Fortfahren mit dem Brenn-Vorgang zur Bestätigung auffordern.
espefuse_burn_example.txt
espefuse.py v4.9.0
Connecting...
Device PID identification is only supported on COM and /dev/ serial ports.
.
Detecting chip type... Unsupported detection protocol, switching and trying again...
Detecting chip type... ESP32-S2
=== Run "burn_efuse" command ===
The efuses to burn:
from BLOCK0
- UART_PRINT_CONTROL
Burning efuses:
- 'UART_PRINT_CONTROL' (Set the default UART boot message output mode) 0b00 -> 0b11
Check all blocks for burn...
idx, BLOCK_NAME, Conclusion
[00] BLOCK0 is empty, will burn the new value
.
This is an irreversible operation!
Type 'BURN' (all capitals) to continue.Check out similar posts by category:
ESP32
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow