From 15155790fb00eaff321c92146d06f304101b6914 Mon Sep 17 00:00:00 2001 From: uhi22 Date: Wed, 3 May 2023 21:26:49 +0200 Subject: [PATCH] fix: EvseMode: longer timeout --- fsmEvse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fsmEvse.py b/fsmEvse.py index 2b1d8fb..91725ff 100644 --- a/fsmEvse.py +++ b/fsmEvse.py @@ -36,7 +36,7 @@ class fsmEvse(): def isTooLong(self): # The timeout handling function. - return (self.cyclesInState > 50) + return (self.cyclesInState > 100) # 100*33ms=3.3s def stateFunctionWaitForSupportedApplicationProtocolRequest(self):