We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06d7756 commit e989613Copy full SHA for e989613
libraries/Arduino_H7_Video/src/Arduino_H7_Video.cpp
@@ -89,6 +89,9 @@ int Arduino_H7_Video::begin() {
89
textFont(Font_5x7);
90
#endif
91
92
+ /* Configure SDRAM */
93
+ SDRAM.begin(dsi_getFramebufferEnd()); // Moving this line from line 156 to here solves the artifacts issue
94
+
95
/* Video controller/bridge init */
96
_shield->init(_edidMode);
97
@@ -152,9 +155,6 @@ int Arduino_H7_Video::begin() {
152
155
153
156
154
157
- /* Configure SDRAM */
- SDRAM.begin(dsi_getFramebufferEnd()); //FIXME: SDRAM init after video controller init can cause display glitch at start-up
-
158
return 0;
159
}
160
0 commit comments