aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJean-François Milants <jf@codingfield.com>2023-05-18 16:58:35 +0200
committerJF <JF002@users.noreply.github.com>2023-06-04 17:22:27 +0200
commitc9747462f720c8e562f6d6427c31edd16cf0b674 (patch)
tree4d6b92188d70444f860a6c627c000cf502163e3b /src
parente224263828f1e9f424fc68d552a178981e2bf58f (diff)
Power optimization - Improve SPI sleep mode
Fix RecoveryLoader.
Diffstat (limited to 'src')
-rw-r--r--src/recoveryLoader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/recoveryLoader.cpp b/src/recoveryLoader.cpp
index cb44065c..723977e3 100644
--- a/src/recoveryLoader.cpp
+++ b/src/recoveryLoader.cpp
@@ -46,7 +46,7 @@ Pinetime::Drivers::Spi flashSpi {spi, Pinetime::PinMap::SpiFlashCsn};
Pinetime::Drivers::SpiNorFlash spiNorFlash {flashSpi};
Pinetime::Drivers::Spi lcdSpi {spi, Pinetime::PinMap::SpiLcdCsn};
-Pinetime::Drivers::St7789 lcd {lcdSpi, Pinetime::PinMap::LcdDataCommand};
+Pinetime::Drivers::St7789 lcd {lcdSpi, Pinetime::PinMap::LcdDataCommand, Pinetime::PinMap::LcdReset};
Pinetime::Components::Gfx gfx {lcd};
Pinetime::Controllers::BrightnessController brightnessController;