aboutsummaryrefslogtreecommitdiffstats
path: root/src/recoveryLoader.cpp
diff options
context:
space:
mode:
authormark9064 <30447455+mark9064@users.noreply.github.com>2024-02-09 00:04:31 +0000
committerJF <JF002@users.noreply.github.com>2024-02-11 13:28:01 +0100
commit4c274421d9bcf5f903e307f1fd61e52174362975 (patch)
treeb67970cc2ca65dfe389ac55b817b54cc42b50c60 /src/recoveryLoader.cpp
parent2db920599eec192f794c96fcaeb7376ea3325adb (diff)
Remove GFX (and unused GFX dependencies)
Diffstat (limited to 'src/recoveryLoader.cpp')
-rw-r--r--src/recoveryLoader.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/recoveryLoader.cpp b/src/recoveryLoader.cpp
index 723977e3..a0b4d784 100644
--- a/src/recoveryLoader.cpp
+++ b/src/recoveryLoader.cpp
@@ -10,7 +10,6 @@
#include <libraries/gpiote/app_gpiote.h>
#include <hal/nrf_wdt.h>
#include <cstring>
-#include <components/gfx/Gfx.h>
#include <drivers/St7789.h>
#include <components/brightness/BrightnessController.h>
#include <algorithm>
@@ -48,7 +47,6 @@ Pinetime::Drivers::SpiNorFlash spiNorFlash {flashSpi};
Pinetime::Drivers::Spi lcdSpi {spi, Pinetime::PinMap::SpiLcdCsn};
Pinetime::Drivers::St7789 lcd {lcdSpi, Pinetime::PinMap::LcdDataCommand, Pinetime::PinMap::LcdReset};
-Pinetime::Components::Gfx gfx {lcd};
Pinetime::Controllers::BrightnessController brightnessController;
void DisplayProgressBar(uint8_t percent, uint16_t color);
@@ -92,7 +90,6 @@ void Process(void* /*instance*/) {
spiNorFlash.Wakeup();
brightnessController.Init();
lcd.Init();
- gfx.Init();
NRF_LOG_INFO("Display logo")
DisplayLogo();