fix regression introduced in 25db0a4
that prevented T-Display_V1 display to updates; fix for displayDriver.h case sensitive filename
This commit is contained in:
parent
68c088f30a
commit
29ffe62ba8
@ -1,4 +1,4 @@
|
|||||||
#include "DisplayDriver.h"
|
#include "displayDriver.h"
|
||||||
|
|
||||||
#ifdef AMOLED_DISPLAY
|
#ifdef AMOLED_DISPLAY
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#ifndef DISPLAY_H
|
#ifndef DISPLAY_H
|
||||||
#define DISPLAY_H
|
#define DISPLAY_H
|
||||||
|
|
||||||
#include "DisplayDriver.h"
|
#include "displayDriver.h"
|
||||||
|
|
||||||
extern DisplayDriver *currentDisplayDriver;
|
extern DisplayDriver *currentDisplayDriver;
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#include "DisplayDriver.h"
|
#include "displayDriver.h"
|
||||||
|
|
||||||
#ifdef DONGLE_DISPLAY
|
#ifdef DONGLE_DISPLAY
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#include "DisplayDriver.h"
|
#include "displayDriver.h"
|
||||||
|
|
||||||
#ifdef ESP32_2432S028R
|
#ifdef ESP32_2432S028R
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#include "DisplayDriver.h"
|
#include "displayDriver.h"
|
||||||
|
|
||||||
#ifdef NO_DISPLAY
|
#ifdef NO_DISPLAY
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#include "DisplayDriver.h"
|
#include "displayDriver.h"
|
||||||
|
|
||||||
#ifdef T_DISPLAY
|
#ifdef T_DISPLAY
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#include "DisplayDriver.h"
|
#include "displayDriver.h"
|
||||||
|
|
||||||
#ifdef V1_DISPLAY
|
#ifdef V1_DISPLAY
|
||||||
|
|
||||||
@ -96,7 +96,6 @@ void tDisplay_MinerScreen(unsigned long mElapsed)
|
|||||||
|
|
||||||
// Push prepared background to screen
|
// Push prepared background to screen
|
||||||
background.pushSprite(0, 0);
|
background.pushSprite(0, 0);
|
||||||
background.deleteSprite();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void tDisplay_ClockScreen(unsigned long mElapsed)
|
void tDisplay_ClockScreen(unsigned long mElapsed)
|
||||||
@ -135,7 +134,6 @@ void tDisplay_ClockScreen(unsigned long mElapsed)
|
|||||||
|
|
||||||
// Push prepared background to screen
|
// Push prepared background to screen
|
||||||
background.pushSprite(0, 0);
|
background.pushSprite(0, 0);
|
||||||
background.deleteSprite();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void tDisplay_GlobalHashScreen(unsigned long mElapsed)
|
void tDisplay_GlobalHashScreen(unsigned long mElapsed)
|
||||||
@ -195,7 +193,6 @@ void tDisplay_GlobalHashScreen(unsigned long mElapsed)
|
|||||||
|
|
||||||
// Push prepared background to screen
|
// Push prepared background to screen
|
||||||
background.pushSprite(0, 0);
|
background.pushSprite(0, 0);
|
||||||
background.deleteSprite();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void tDisplay_LoadingScreen(void)
|
void tDisplay_LoadingScreen(void)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#include "DisplayDriver.h"
|
#include "displayDriver.h"
|
||||||
|
|
||||||
#ifdef T_QT_DISPLAY
|
#ifdef T_QT_DISPLAY
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user