Remove manual reset methods
This commit is contained in:
parent
f18219964e
commit
3a6be5868d
@ -49,7 +49,6 @@ void setup()
|
||||
setupComponents();
|
||||
setupPreferences();
|
||||
#ifndef NO_DISPLAY
|
||||
resetAllDisplays();
|
||||
initDisplays();
|
||||
#endif
|
||||
setupWifi();
|
||||
|
@ -91,56 +91,17 @@ SemaphoreHandle_t epdUpdateSemaphore[NUM_SCREENS];
|
||||
|
||||
// int *qrcode = (int *) ps_malloc(qrcodegen_BUFFER_LEN_MAX * sizeof(uint8_t));
|
||||
|
||||
|
||||
void setupDisplays()
|
||||
{
|
||||
handleScreenTasks(getCurrentScreen());
|
||||
xTaskCreate(taskEpd, "epd_task", 2048, NULL, 1, NULL);
|
||||
}
|
||||
|
||||
void resetAllDisplays()
|
||||
{
|
||||
#ifdef NO_MCP
|
||||
digitalWrite(RST_PIN, HIGH);
|
||||
pinMode(RST_PIN, OUTPUT);
|
||||
delay(20);
|
||||
digitalWrite(RST_PIN, LOW);
|
||||
delay(20);
|
||||
digitalWrite(RST_PIN, HIGH);
|
||||
delay(200);
|
||||
#else
|
||||
for (int i = 0; i < NUM_SCREENS; i++)
|
||||
{
|
||||
resetSingleDisplay(i);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
void resetSingleDisplay(int i)
|
||||
{
|
||||
#ifndef NO_MCP
|
||||
EPD_RESET_MPD[i].digitalWrite(HIGH);
|
||||
delay(20);
|
||||
EPD_RESET_MPD[i].digitalWrite(LOW);
|
||||
delay(20);
|
||||
EPD_RESET_MPD[i].digitalWrite(HIGH);
|
||||
delay(200);
|
||||
#endif
|
||||
}
|
||||
|
||||
void initDisplays()
|
||||
{
|
||||
for (uint i = 0; i < NUM_SCREENS; i++)
|
||||
{
|
||||
#ifndef NO_MCP
|
||||
EPD_RESET_MPD[i].pinMode(OUTPUT);
|
||||
#endif
|
||||
displays[i].init();
|
||||
#ifndef NO_MCP
|
||||
resetSingleDisplay(i);
|
||||
#endif
|
||||
|
||||
// displays[i].epd2.init(SW_SCK, SW_MOSI, 115200, true, 20, false);
|
||||
}
|
||||
|
||||
for (uint i = 0; i < NUM_SCREENS; i++)
|
||||
@ -200,9 +161,6 @@ void taskEpd(void *pvParameters)
|
||||
{
|
||||
if (!updatedThisCycle)
|
||||
{
|
||||
#ifdef NO_MCP
|
||||
resetAllDisplays();
|
||||
#endif
|
||||
updatedThisCycle = true;
|
||||
}
|
||||
|
||||
@ -298,8 +256,6 @@ void showDigit(const uint dispNum, char chr, bool partial, const GFXfont *font)
|
||||
|
||||
void fullRefresh(void *pvParameters)
|
||||
{
|
||||
resetAllDisplays();
|
||||
|
||||
for (uint i = 0; i < NUM_SCREENS; i++)
|
||||
{
|
||||
lastFullRefresh[i] = NULL;
|
||||
@ -321,10 +277,7 @@ void updateDisplay(void *pvParameters)
|
||||
if (epdContent[epdIndex].compareTo(currentEpdContent[epdIndex]) != 0)
|
||||
{
|
||||
currentEpdContent[epdIndex] = epdContent[epdIndex];
|
||||
#ifndef NO_MCP
|
||||
displays[epdIndex].init(0, false);
|
||||
resetSingleDisplay(epdIndex);
|
||||
#endif
|
||||
|
||||
// displays[epdIndex].init(0, false);
|
||||
bool updatePartial = true;
|
||||
|
||||
@ -353,4 +306,3 @@ void updateDisplay(void *pvParameters)
|
||||
xSemaphoreGive(epdUpdateSemaphore[epdIndex]);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -33,8 +33,6 @@ typedef struct {
|
||||
void setupDisplays();
|
||||
void initDisplays();
|
||||
void taskEpd(void *pvParameters);
|
||||
void resetAllDisplays();
|
||||
void resetSingleDisplay(int i);
|
||||
|
||||
std::array<String, 7> getCurrentEpdContent();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user