Enable 200MHz PSRAM for ESP32-P4 #310
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request updates the ESP32 build configurations to support new memory speed variants and flash frequency settings. The changes primarily focus on adding support for
80m_200mand40m_200mconfigurations while cleaning up redundant settings.Updates to build configurations:
configs/builds.json: Updatedidf_libs,bootloaders, andmem_variantsto include new80m_200mand40m_200mconfigurations for theesp32p4target.New configuration files:
configs/defconfig.40m_200m: Added configurations for40Mflash frequency and200MSPIRAM speed.configs/defconfig.80m_200m: Added configurations for80Mflash frequency and200MSPIRAM speed.Cleanup of redundant settings:
configs/defconfig.esp32p4: Removed the redundantCONFIG_SPIRAM_SPEED_200Msetting, as it is now covered by the new configuration files.Closes: espressif/arduino-esp32#11651