Skip to content

Commit 1026376

Browse files
committed
fix
1 parent 4a5022c commit 1026376

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/scripts/sketch_utils.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@ function build_sketch(){ # build_sketch <ide_path> <user_path> <path-to-ino> [ex
8383

8484
# Default FQBN options if none were passed in the command line.
8585

86-
esp32_opts="PSRAM=enabled,PartitionScheme=huge_app"
87-
esp32s2_opts="PSRAM=enabled,PartitionScheme=huge_app"
88-
esp32s3_opts="PSRAM=opi,USBMode=default,PartitionScheme=huge_app"
89-
esp32c3_opts="PartitionScheme=huge_app"
90-
esp32c6_opts="PartitionScheme=huge_app"
91-
esp32h2_opts="PartitionScheme=huge_app"
86+
esp32_opts="PSRAM=enabled,PartitionScheme=huge_app,FlashMode=dio"
87+
esp32s2_opts="PSRAM=enabled,PartitionScheme=huge_app,FlashMode=dio"
88+
esp32s3_opts="PSRAM=opi,USBMode=default,PartitionScheme=huge_app,FlashMode=dio"
89+
esp32c3_opts="PartitionScheme=huge_app,FlashMode=dio"
90+
esp32c6_opts="PartitionScheme=huge_app,FlashMode=dio"
91+
esp32h2_opts="PartitionScheme=huge_app,FlashMode=dio"
9292

9393
# Select the common part of the FQBN based on the target. The rest will be
9494
# appended depending on the passed options.

0 commit comments

Comments
 (0)