Skip to content

Commit

Permalink
fix regression introduced in 25db0a4 that prevented T-Display_V1 disp…
Browse files Browse the repository at this point in the history
…lay to updates; fix for displayDriver.h case sensitive filename
  • Loading branch information
giovantenne committed Oct 12, 2023
1 parent 68c088f commit 29ffe62
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 18 deletions.
4 changes: 2 additions & 2 deletions src/drivers/displays/amoledDisplayDriver.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "DisplayDriver.h"
#include "displayDriver.h"

#ifdef AMOLED_DISPLAY

Expand Down Expand Up @@ -243,4 +243,4 @@ DisplayDriver amoledDisplayDriver = {
0,
WIDTH,
HEIGHT};
#endif
#endif
2 changes: 1 addition & 1 deletion src/drivers/displays/display.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef DISPLAY_H
#define DISPLAY_H

#include "DisplayDriver.h"
#include "displayDriver.h"

extern DisplayDriver *currentDisplayDriver;

Expand Down
4 changes: 2 additions & 2 deletions src/drivers/displays/dongleDisplayDriver.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "DisplayDriver.h"
#include "displayDriver.h"

#ifdef DONGLE_DISPLAY

Expand Down Expand Up @@ -216,4 +216,4 @@ DisplayDriver dongleDisplayDriver = {
WIDTH,
HEIGHT};

#endif
#endif
4 changes: 2 additions & 2 deletions src/drivers/displays/esp23_2432s028r.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "DisplayDriver.h"
#include "displayDriver.h"

#ifdef ESP32_2432S028R

Expand Down Expand Up @@ -458,4 +458,4 @@ DisplayDriver esp32_2432S028RDriver = {
0,
WIDTH,
HEIGHT};
#endif
#endif
4 changes: 2 additions & 2 deletions src/drivers/displays/noDisplayDriver.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "DisplayDriver.h"
#include "displayDriver.h"

#ifdef NO_DISPLAY

Expand Down Expand Up @@ -101,4 +101,4 @@ DisplayDriver noDisplayDriver = {
0,
0,
};
#endif
#endif
4 changes: 2 additions & 2 deletions src/drivers/displays/tDisplayDriver.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "DisplayDriver.h"
#include "displayDriver.h"

#ifdef T_DISPLAY

Expand Down Expand Up @@ -231,4 +231,4 @@ DisplayDriver tDisplayDriver = {
0,
WIDTH,
HEIGHT};
#endif
#endif
7 changes: 2 additions & 5 deletions src/drivers/displays/tDisplayV1Driver.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "DisplayDriver.h"
#include "displayDriver.h"

#ifdef V1_DISPLAY

Expand Down Expand Up @@ -96,7 +96,6 @@ void tDisplay_MinerScreen(unsigned long mElapsed)

// Push prepared background to screen
background.pushSprite(0, 0);
background.deleteSprite();
}

void tDisplay_ClockScreen(unsigned long mElapsed)
Expand Down Expand Up @@ -135,7 +134,6 @@ void tDisplay_ClockScreen(unsigned long mElapsed)

// Push prepared background to screen
background.pushSprite(0, 0);
background.deleteSprite();
}

void tDisplay_GlobalHashScreen(unsigned long mElapsed)
Expand Down Expand Up @@ -195,7 +193,6 @@ void tDisplay_GlobalHashScreen(unsigned long mElapsed)

// Push prepared background to screen
background.pushSprite(0, 0);
background.deleteSprite();
}

void tDisplay_LoadingScreen(void)
Expand Down Expand Up @@ -234,4 +231,4 @@ DisplayDriver tDisplayV1Driver = {
0,
WIDTH,
HEIGHT};
#endif
#endif
4 changes: 2 additions & 2 deletions src/drivers/displays/t_qtDisplayDriver.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "DisplayDriver.h"
#include "displayDriver.h"

#ifdef T_QT_DISPLAY

Expand Down Expand Up @@ -177,4 +177,4 @@ DisplayDriver t_qtDisplayDriver = {
0,
WIDTH,
HEIGHT};
#endif
#endif

0 comments on commit 29ffe62

Please sign in to comment.