maintenance mode (fix display logic)

This commit is contained in:
cyberman54 2021-03-06 16:32:10 +01:00
parent 6cd6b53357
commit e604db49d6

View File

@ -482,6 +482,8 @@ void setup() {
// display interrupt // display interrupt
#ifdef HAS_DISPLAY #ifdef HAS_DISPLAY
dp_clear();
dp_contrast(DISPLAYCONTRAST);
// https://techtutorialsx.com/2017/10/07/esp32-arduino-timer-interrupts/ // https://techtutorialsx.com/2017/10/07/esp32-arduino-timer-interrupts/
// prescaler 80 -> divides 80 MHz CPU freq to 1 MHz, timer 0, count up // prescaler 80 -> divides 80 MHz CPU freq to 1 MHz, timer 0, count up
displayIRQ = timerBegin(0, 80, true); displayIRQ = timerBegin(0, 80, true);
@ -540,8 +542,6 @@ void setup() {
// set runmode to normal // set runmode to normal
RTC_runmode = RUNMODE_NORMAL; RTC_runmode = RUNMODE_NORMAL;
dp_clear();
dp_contrast(DISPLAYCONTRAST);
vTaskDelete(NULL); vTaskDelete(NULL);