-
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.
Update submodules to latest and enable new optimizations (#8)
* update espp and esp-protocols submodules * remove older jpegdec * add esp-cpp/jpegdec * simplify config and enable some optimizations / speedup * remove touch / lvgl since they are not needed * minor update * update * fix log * decrease lvgl memory since it is not used so we can have larger framebuffers if we want
- Loading branch information
Showing
8 changed files
with
17 additions
and
43 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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
[submodule "components/espp"] | ||
path = components/espp | ||
url = [email protected]:esp-cpp/espp | ||
[submodule "components/jpegdec"] | ||
path = components/jpegdec | ||
url = [email protected]:bitbank2/JPEGDEC | ||
[submodule "components/esp-protocols"] | ||
path = components/esp-protocols | ||
url = [email protected]:espressif/esp-protocols | ||
[submodule "components/jpegdec"] | ||
path = components/jpegdec | ||
url = https://github.com/esp-cpp/jpegdec |
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
Submodule esp-protocols
updated
8 files
Submodule jpegdec
updated
13 files
+30 −0 | .github/ISSUE_TEMPLATE/bug_report.md | |
+4 −1 | CMakeLists.txt | |
+4 −1 | examples/ILI9431_t3_slideshow/ILI9431_t3_slideshow.ino | |
+4 −4 | examples/jpeg_perf_test/jpeg_perf_test.ino | |
+1 −1 | library.properties | |
+225 −32 | linux/main.c | |
+36 −3 | src/JPEGDEC.cpp | |
+60 −9 | src/JPEGDEC.h | |
+2,018 −222 | src/jpeg.inl | |
+57 −0 | src/my_cm4_simd.h | |
+128 −0 | src/s3_simd_420.S | |
+109 −0 | src/s3_simd_444.S | |
+64 −0 | src/s3_simd_dequant.S |
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