We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2ac45c commit 445b9e7Copy full SHA for 445b9e7
tools/copy-mem-variant.sh
@@ -11,6 +11,11 @@ fi
11
12
MEMCONF=$OCT_FLASH"_$OCT_PSRAM"
13
14
+# For esp32s3, add frequency from environment variable set by build.sh
15
+if [ "$IDF_TARGET" = "esp32s3" ] && [ -n "$MEM_VARIANT_FREQ" ]; then
16
+ MEMCONF=$MEMCONF"_$MEM_VARIANT_FREQ"
17
+fi
18
+
19
source ./tools/config.sh
20
21
echo "IDF_TARGET: $IDF_TARGET, MEMCONF: $MEMCONF"
0 commit comments