Skip to content

Enable 200MHz PSRAM for ESP32-P4 #310

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions configs/builds.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@
{
"target": "esp32p4",
"features":["qio_ram"],
"idf_libs":["qio","80m"],
"idf_libs":["qio","80m_200m"],
"bootloaders":[
["qio","80m"],
["dio","80m"],
["qio","40m"],
["dio","40m"]
["qio","80m_200m"],
["dio","80m_200m"],
["qio","40m_200m"],
["dio","40m_200m"]
],
"mem_variants":[
["dio","80m"]
["dio","80m_200m"]
]
},
{
Expand Down
2 changes: 2 additions & 0 deletions configs/defconfig.40m_200m
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CONFIG_ESPTOOLPY_FLASHFREQ_40M=y
CONFIG_SPIRAM_SPEED_200M=y
2 changes: 2 additions & 0 deletions configs/defconfig.80m_200m
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CONFIG_ESPTOOLPY_FLASHFREQ_80M=y
CONFIG_SPIRAM_SPEED_200M=y
1 change: 0 additions & 1 deletion configs/defconfig.esp32p4
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
CONFIG_IDF_EXPERIMENTAL_FEATURES=y
CONFIG_SPIRAM=y
CONFIG_SPIRAM_SPEED_200M=y
# CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 is not set
CONFIG_LWIP_TCP_SACK_OUT=y

Expand Down