Skip to content

Commit 4742793

Browse files
authored
Merge pull request #10302 from supcik/main
boards/oxocard_*/board.c: Fix vertical offset for LCD screen
2 parents 5c41950 + b83d81c commit 4742793

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ports/espressif/boards/oxocard_artwork/board.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ static void display_init(void) {
6060
240, // width (after rotation)
6161
240, // height (after rotation)
6262
0, // column start
63-
80, // row start
63+
0, // row start
6464
0, // rotation
6565
16, // color depth
6666
false, // grayscale

ports/espressif/boards/oxocard_galaxy/board.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ static void display_init(void) {
6060
240, // width (after rotation)
6161
240, // height (after rotation)
6262
0, // column start
63-
80, // row start
63+
0, // row start
6464
0, // rotation
6565
16, // color depth
6666
false, // grayscale

ports/espressif/boards/oxocard_science/board.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ static void display_init(void) {
6060
240, // width (after rotation)
6161
240, // height (after rotation)
6262
0, // column start
63-
80, // row start
63+
0, // row start
6464
0, // rotation
6565
16, // color depth
6666
false, // grayscale

0 commit comments

Comments
 (0)