summaryrefslogtreecommitdiff
path: root/src/drivers/St7789.cpp
diff options
context:
space:
mode:
authorJF <jf@codingfield.com>2020-03-11 21:35:06 +0100
committerJF <jf@codingfield.com>2020-03-11 21:35:06 +0100
commita91c68c931cc8308e87acd796afb46ba70ae3dc2 (patch)
tree505f15350e19c44eca19e252ca5b999f959164df /src/drivers/St7789.cpp
parentb279c994887342197cc5940f1735a074d7e58f1b (diff)
Backup and restore vertical scroll offset when goind to sleep/wakeup to avoid scrambled display on wake-up.
Diffstat (limited to 'src/drivers/St7789.cpp')
-rw-r--r--src/drivers/St7789.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/drivers/St7789.cpp b/src/drivers/St7789.cpp
index 1f6e6d36..db7c27e2 100644
--- a/src/drivers/St7789.cpp
+++ b/src/drivers/St7789.cpp
@@ -131,6 +131,7 @@ void St7789::VerticalScrollDefinition(uint16_t topFixedLines, uint16_t scrollLin
}
void St7789::VerticalScrollStartAddress(uint16_t line) {
+ verticalScrollingStartAddress = line;
WriteCommand(static_cast<uint8_t>(Commands::VerticalScrollStartAddress));
WriteData(line >> 8u);
WriteData(line & 0x00ffu);
@@ -189,5 +190,6 @@ void St7789::Wakeup() {
RowAddressSet();
DisplayInversionOn();
NormalModeOn();
+ VerticalScrollStartAddress(verticalScrollingStartAddress);
DisplayOn();
}