forked from BlueAndi/Pixelix
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Lilygo T-DISPLAY S3: Enable PSRAM and 16MB Flash
* Enabled PSRAM memory (+8MB usable RAM) - This setting is crucial: board_build.arduino.memory_type = qio_opi * Use 16MB flash partition scheme - A custom one with 16MB-1Byte size is used to workaround a tool bug when trying to upload full 16MB see espressif/esptool#795 (comment) - Add PSRAM to info web page
- Loading branch information
Norbert Schulz
committed
Dec 4, 2022
1 parent
fa9637d
commit 0c57b67
Showing
4 changed files
with
128 additions
and
65 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Name, Type, SubType, Offset, Size, Flags | ||
nvs, data, nvs, 0x9000, 0x5000, | ||
otadata, data, ota, 0xe000, 0x2000, | ||
app0, app, ota_0, 0x10000, 0x640000, | ||
app1, app, ota_1, 0x650000,0x640000, | ||
|
||
# full 16MB not useable, see https://github.com/espressif/esptool/issues/795#issuecomment-1321487813 | ||
# use 1 byte less to avoid upload error | ||
#spiffs, data, spiffs, 0xc90000,0x370000, | ||
spiffs, data, spiffs, 0xc90000,0x36FFFF, |
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