File tree 2 files changed +9
-0
lines changed
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -804,6 +804,7 @@ elseif(TARGET_DEVICE STREQUAL "MOY-UNK") # P8b mirrored
804
804
add_definitions (-DCLOCK_CONFIG_LF_SRC=0) # RC
805
805
add_definitions (-DMYNEWT_VAL_BLE_LL_SCA=500)
806
806
add_definitions (-DCLOCK_CONFIG_LF_CAL_ENABLED=1)
807
+ add_definitions (-DDISPLAY_DRIVER_MIRROR)
807
808
else ()
808
809
message (FATAL_ERROR "Invalid TARGET_DEVICE" )
809
810
endif ()
Original file line number Diff line number Diff line change @@ -21,7 +21,10 @@ void St7789::Init() {
21
21
MemoryDataAccessControl ();
22
22
ColumnAddressSet ();
23
23
RowAddressSet ();
24
+ // P8B Mirrored version does not need display inversion.
25
+ #ifndef DISPLAY_DRIVER_MIRROR
24
26
DisplayInversionOn ();
27
+ #endif
25
28
NormalModeOn ();
26
29
SetVdv ();
27
30
DisplayOn ();
@@ -62,7 +65,12 @@ void St7789::ColMod() {
62
65
63
66
void St7789::MemoryDataAccessControl () {
64
67
WriteCommand (static_cast <uint8_t >(Commands::MemoryDataAccessControl));
68
+ // P8B Mirrored version sets MX bit high in MADCTL register to flip about vertical axis.
69
+ #ifdef DISPLAY_DRIVER_MIRROR
70
+ WriteData (0x40 ); // MY(0) MX(1) MV(0) ML(0) RGB(0) 0 0 0
71
+ #else
65
72
WriteData (0x00 );
73
+ #endif
66
74
}
67
75
68
76
void St7789::ColumnAddressSet () {
You can’t perform that action at this time.
0 commit comments