-
-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated Graphics library with support for ST7789V display and other M…
…IPI displays. (#2396)
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule Graphics
updated
24 files
+0 −28 | samples/Advanced_Animation/sming.code-workspace | |
+9 −0 | samples/Color_Test/Makefile | |
+41 −0 | samples/Color_Test/README.rst | |
+72 −0 | samples/Color_Test/app/application.cpp | |
+1 −0 | samples/Color_Test/component.mk | |
+12 −430 | src/Display/ILI9341.cpp | |
+116 −0 | src/Display/ST7789V.cpp | |
+3 −0 | src/DisplayList.cpp | |
+0 −3 | src/Drawing/Renderer.cpp | |
+285 −0 | src/MipiDisplay.cpp | |
+80 −0 | src/SpiDisplay.cpp | |
+4 −0 | src/SpiDisplayList.cpp | |
+2 −1 | src/include/Arch/Host/Graphics/Display/Virtual.h | |
+39 −0 | src/include/Graphics/AbstractDisplay.h | |
+1 −1 | src/include/Graphics/Asset.h | |
+7 −80 | src/include/Graphics/Display/ILI9341.h | |
+51 −0 | src/include/Graphics/Display/ST7789V.h | |
+1 −0 | src/include/Graphics/Display/readme.txt | |
+15 −2 | src/include/Graphics/DisplayList.h | |
+187 −0 | src/include/Graphics/Mipi.h | |
+255 −0 | src/include/Graphics/MipiDisplay.h | |
+4 −0 | src/include/Graphics/Object.h | |
+77 −0 | src/include/Graphics/SpiDisplay.h | |
+2 −7 | src/include/Graphics/SpiDisplayList.h |