Skip to content

Commit

Permalink
Update sdkconfig.partition
Browse files Browse the repository at this point in the history
My ESP32 (an ESP-WROOM-32) was rebooting continuously

This page

https://github.com/micropython/micropython/blob/17d82344581ad3a76033fae54c5d3304e17f185f/ports/esp32/README.md?plain=1#L237

tells us
"""
* Continuous reboots after programming: Ensure `CONFIG_ESPTOOLPY_FLASHMODE` is
  correct for your board (e.g. ESP-WROOM-32 should be DIO). Then perform a
  `make clean`, rebuild, redeploy.
"""

So I just uncommented the line that enables DIO
  • Loading branch information
DOBsby authored Sep 27, 2024
1 parent f72d1fb commit 8d825bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boards/esp32/MICROLITE/sdkconfig.partition
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# MICROLITE 4M flash partition adjustment
#CONFIG_ESPTOOLPY_FLASHMODE_DIO=y
CONFIG_ESPTOOLPY_FLASHMODE_DIO=y
#CONFIG_ESPTOOLPY_FLASHFREQ_40M=y
#CONFIG_ESPTOOLPY_FLASHSIZE_2MB=y
CONFIG_PARTITION_TABLE_CUSTOM=y
Expand Down

0 comments on commit 8d825bd

Please sign in to comment.