Skip to content

Commit 4faed90

Browse files
authored
Enable 200MHz PSRAM for ESP32-P4 (#310)
1 parent c658f0f commit 4faed90

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

configs/builds.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@
6161
{
6262
"target": "esp32p4",
6363
"features":["qio_ram"],
64-
"idf_libs":["qio","80m"],
64+
"idf_libs":["qio","80m_200m"],
6565
"bootloaders":[
66-
["qio","80m"],
67-
["dio","80m"],
68-
["qio","40m"],
69-
["dio","40m"]
66+
["qio","80m_200m"],
67+
["dio","80m_200m"],
68+
["qio","40m_200m"],
69+
["dio","40m_200m"]
7070
],
7171
"mem_variants":[
72-
["dio","80m"]
72+
["dio","80m_200m"]
7373
]
7474
},
7575
{

configs/defconfig.40m_200m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CONFIG_ESPTOOLPY_FLASHFREQ_40M=y
2+
CONFIG_SPIRAM_SPEED_200M=y

configs/defconfig.80m_200m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CONFIG_ESPTOOLPY_FLASHFREQ_80M=y
2+
CONFIG_SPIRAM_SPEED_200M=y

configs/defconfig.esp32p4

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
CONFIG_IDF_EXPERIMENTAL_FEATURES=y
22
CONFIG_SPIRAM=y
3-
CONFIG_SPIRAM_SPEED_200M=y
43
# CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 is not set
54
CONFIG_LWIP_TCP_SACK_OUT=y
65

0 commit comments

Comments
 (0)