Skip to content

Commit e4fd9cf

Browse files
authored
Use flash_mode for memory_type when memory_type is not set for (#80)
* Use flash_mode for memory_type when memory_type is not set for …ESP32, C3 and S2 when using Platformio * Use `dio` as default when no flash mode is set
1 parent 19c6911 commit e4fd9cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: tools/copy-libs.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ for item; do
396396
done
397397
fi
398398
done
399-
echo " join(FRAMEWORK_DIR, \"tools\", \"sdk\", \"$IDF_TARGET\", env.BoardConfig().get(\"build.arduino.memory_type\", \"$MEMCONF\"), \"include\")," >> "$AR_PLATFORMIO_PY"
399+
echo " join(FRAMEWORK_DIR, \"tools\", \"sdk\", \"$IDF_TARGET\", env.BoardConfig().get(\"build.arduino.memory_type\", (env.BoardConfig().get(\"build.flash_mode\", \"dio\") + \"_$OCT_PSRAM\")), \"include\")," >> "$AR_PLATFORMIO_PY"
400400
echo " join(FRAMEWORK_DIR, \"cores\", env.BoardConfig().get(\"build.core\"))" >> "$AR_PLATFORMIO_PY"
401401
echo " ]," >> "$AR_PLATFORMIO_PY"
402402
echo "" >> "$AR_PLATFORMIO_PY"
@@ -421,7 +421,7 @@ done
421421
echo " LIBPATH=[" >> "$AR_PLATFORMIO_PY"
422422
echo " join(FRAMEWORK_DIR, \"tools\", \"sdk\", \"$IDF_TARGET\", \"lib\")," >> "$AR_PLATFORMIO_PY"
423423
echo " join(FRAMEWORK_DIR, \"tools\", \"sdk\", \"$IDF_TARGET\", \"ld\")," >> "$AR_PLATFORMIO_PY"
424-
echo " join(FRAMEWORK_DIR, \"tools\", \"sdk\", \"$IDF_TARGET\", env.BoardConfig().get(\"build.arduino.memory_type\", \"$MEMCONF\"))" >> "$AR_PLATFORMIO_PY"
424+
echo " join(FRAMEWORK_DIR, \"tools\", \"sdk\", \"$IDF_TARGET\", env.BoardConfig().get(\"build.arduino.memory_type\", (env.BoardConfig().get(\"build.flash_mode\", \"dio\") + \"_$OCT_PSRAM\")))" >> "$AR_PLATFORMIO_PY"
425425
echo " ]," >> "$AR_PLATFORMIO_PY"
426426
echo "" >> "$AR_PLATFORMIO_PY"
427427

0 commit comments

Comments
 (0)