-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #71 from EremusOne/psram
ESPectrum 1.3
- Loading branch information
Showing
72 changed files
with
42,906 additions
and
4,990 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,17 @@ | ||
!.keep | ||
.pio | ||
.vscode | ||
.vscode/** | ||
.VSCodeCounter | ||
.VSCodeCounter/** | ||
data/s/** | ||
!data/s/sppong.sna | ||
!data/s/fantasy.sna | ||
!data/s/Snake.sna | ||
!data/s/Tetris.sna | ||
data/t/** | ||
!data/t/vccc2022.tap | ||
.vscode/.browse.c_cpp.db* | ||
.vscode/c_cpp_properties.json | ||
.vscode/launch.json | ||
.vscode/ipch | ||
/unpacked_fs | ||
/unpacked_fs/** | ||
downloaded_fs*.bin | ||
/doc | ||
/doc/** | ||
/releases | ||
/releases/** | ||
|
||
dependencies.lock | ||
build/* |
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 @@ | ||
{ | ||
// See http://go.microsoft.com/fwlink/?LinkId=827846 | ||
// for the documentation about the extensions.json format | ||
"recommendations": [ | ||
"platformio.platformio-ide" | ||
], | ||
"unwantedRecommendations": [ | ||
"ms-vscode.cpptools-extension-pack" | ||
] | ||
} |
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,4 +1,4 @@ | ||
cmake_minimum_required(VERSION 3.16.0) | ||
include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||
list(APPEND EXTRA_COMPONENT_DIRS components/fabgl components/pwm_audio) | ||
project(ESP32003) | ||
project(ESPectrum2) |
This file was deleted.
Oops, something went wrong.
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,9 @@ | ||
# Name, Type, SubType, Offset, Size, Flags | ||
nvs, data, nvs, 0x9000, 0x35000, | ||
otadata, data, ota, 0x3e000, 0x2000, | ||
esp0, app, ota_0, 0x40000, 0xF0000, | ||
esp1, app, ota_1, 0x130000, 0xF0000, | ||
esp2, app, ota_2, 0x220000, 0xF0000, | ||
esp3, app, ota_3, 0x310000, 0xF0000, | ||
# nvs, data, nvs, 0x3E0000, 0x20000, | ||
# spiffs, data, spiffs, 0x3D0000,0x30000, |
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,9 +1,8 @@ | ||
# Name, Type, SubType, Offset, Size, Flags | ||
nvs, data, nvs, 0x9000, 0x35000, | ||
otadata, data, ota, 0x3e000, 0x2000, | ||
esp0, app, ota_0, 0x40000, 0xF0000, | ||
esp1, app, ota_1, 0x130000, 0xF0000, | ||
esp2, app, ota_2, 0x220000, 0xF0000, | ||
esp3, app, ota_3, 0x310000, 0xF0000, | ||
esp0, app, ota_0, 0x40000, 0x140000, | ||
esp1, app, ota_1, 0x180000, 0x140000, | ||
esp2, app, ota_2, 0x2C0000, 0x140000, | ||
# nvs, data, nvs, 0x3E0000, 0x20000, | ||
# spiffs, data, spiffs, 0x3D0000,0x30000, |
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
Oops, something went wrong.