ESP32-S2 : Quelles sont les différentes valeurs de l'eFuse UART_PRINT_CONTROL ?
L’eFuse UART_PRINT_CONTROL de l’ESP32-S2 contrôle le comportement de la sortie d’impression UART pendant la phase de démarrage ROM. Selon ESP-IDF sur GitHub, elle est composée de deux bits :
00: Activé01: Activé lorsque GPIO46 est bas au moment de la réinitialisation10: Activé lorsque GPIO46 est haut au moment de la réinitialisation11: Désactivé
La graver ne peut pas être annulé, mais si vous voulez vraiment le faire, voici un exemple pour la graver à 0b11 :
burn_uart_print_control.sh
espefuse.py burn_efuse UART_PRINT_CONTROL 0b11Cela vous demandera une confirmation avant de procéder à l’opération de gravure.
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