fix: M5Stack Unit C6L merged.bin fails to boot (flash_mode qio->dio)

Board manifest for esp32-c6-devkitm-1 defaults build.flash_mode to qio,
which this module's flash chip does not support -- causes a boot
crash-loop (repeated USB-Serial-JTAG reconnects) on real hardware.
Override with board_build.flash_mode = dio in the common M5Stack_Unit_C6L
section so it applies to all envs (ble/usb/repeater/room_server).
This commit is contained in:
me
2026-08-01 22:20:20 -07:00
parent db232808aa
commit ae1b610a94
+1
View File
@@ -2,6 +2,7 @@
extends = esp32c6_base
board = esp32-c6-devkitm-1
board_build.partitions = min_spiffs.csv ; get around 4mb flash limit
board_build.flash_mode = dio ; board manifest defaults to qio, which causes a boot crash-loop on this module
build_flags =
${esp32c6_base.build_flags}
${sensor_base.build_flags}