-
Notifications
You must be signed in to change notification settings - Fork 7.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: recommend turn on psram xip feature for bounbe buffer mode
- Loading branch information
1 parent
07d6533
commit 6d22959
Showing
5 changed files
with
11 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
CONFIG_COMPILER_DUMP_RTL_FILES=y | ||
CONFIG_LCD_RGB_ISR_IRAM_SAFE=y | ||
CONFIG_GDMA_CTRL_FUNC_IN_IRAM=y | ||
# bounce buffer mode relies on GDMA EOF interrupt to be service-able | ||
CONFIG_GDMA_ISR_IRAM_SAFE=y | ||
CONFIG_COMPILER_OPTIMIZATION_NONE=y | ||
# silent the error check, as the error string are stored in rodata, causing RTL check failure | ||
CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT=y |
4 changes: 4 additions & 0 deletions
4
components/esp_lcd/test_apps/rgb_lcd/sdkconfig.defaults.esp32s3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
CONFIG_SPIRAM=y | ||
CONFIG_SPIRAM_MODE_OCT=y | ||
CONFIG_SPIRAM_SPEED_80M=y | ||
|
||
# Enable the XIP-PSRAM feature, so the ext-mem cache won't be disabled when SPI1 is operating the main flash | ||
CONFIG_SPIRAM_FETCH_INSTRUCTIONS=y | ||
CONFIG_SPIRAM_RODATA=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters