From 46862825ec90e9ac924b9f6a832ee3166fa4d63c Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Fri, 14 Apr 2023 13:27:50 +0200 Subject: [PATCH] 2 minutes countdown for ptme was attempted CD --- mission/system/EiveSystem.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mission/system/EiveSystem.h b/mission/system/EiveSystem.h index ecb5cf65..30a01df9 100644 --- a/mission/system/EiveSystem.h +++ b/mission/system/EiveSystem.h @@ -37,7 +37,9 @@ class EiveSystem : public Subsystem, public HasActionsIF { uint8_t frameDirtyErrorCounter = 0; Countdown frameDirtyCheckCd = Countdown(10000); - Countdown ptmeResetWasAttemptedCd = Countdown(60000); + // If the PDEC reset was already attempted in the last 2 minutes, there is a high chance that + // only a full reboot will fix the issue. + Countdown ptmeResetWasAttemptedCd = Countdown(120000); ActionHelper actionHelper; PowerSwitchIF* powerSwitcher = nullptr;