don't count sleep wakeups as restarts
This commit is contained in:
parent
731bbfb8d1
commit
0badbeffd8
@ -56,6 +56,7 @@ void do_after_reset(void) {
|
|||||||
|
|
||||||
case SW_CPU_RESET: // 0x0c Software reset CPU
|
case SW_CPU_RESET: // 0x0c Software reset CPU
|
||||||
// keep previous set runmode (update / normal / maintenance)
|
// keep previous set runmode (update / normal / maintenance)
|
||||||
|
RTC_restarts++;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case DEEPSLEEP_RESET: // 0x05 Deep Sleep reset digital core
|
case DEEPSLEEP_RESET: // 0x05 Deep Sleep reset digital core
|
||||||
@ -84,10 +85,10 @@ void do_after_reset(void) {
|
|||||||
case RTCWDT_RTC_RESET: // 0x10 RTC Watch dog reset digital core and rtc mode
|
case RTCWDT_RTC_RESET: // 0x10 RTC Watch dog reset digital core and rtc mode
|
||||||
default:
|
default:
|
||||||
RTC_runmode = RUNMODE_POWERCYCLE;
|
RTC_runmode = RUNMODE_POWERCYCLE;
|
||||||
|
RTC_restarts++;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
RTC_restarts++;
|
|
||||||
ESP_LOGI(TAG, "Starting Software v%s (runmode=%d / restarts=%d)", PROGVERSION,
|
ESP_LOGI(TAG, "Starting Software v%s (runmode=%d / restarts=%d)", PROGVERSION,
|
||||||
RTC_runmode, RTC_restarts);
|
RTC_runmode, RTC_restarts);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user