mirror of
https://github.com/uhi22/pyPLC.git
synced 2024-11-10 01:05:42 +00:00
fix: EvseMode: longer timeout
This commit is contained in:
parent
14b1cdb2ff
commit
15155790fb
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ class fsmEvse():
|
||||||
|
|
||||||
def isTooLong(self):
|
def isTooLong(self):
|
||||||
# The timeout handling function.
|
# The timeout handling function.
|
||||||
return (self.cyclesInState > 50)
|
return (self.cyclesInState > 100) # 100*33ms=3.3s
|
||||||
|
|
||||||
|
|
||||||
def stateFunctionWaitForSupportedApplicationProtocolRequest(self):
|
def stateFunctionWaitForSupportedApplicationProtocolRequest(self):
|
||||||
|
|
Loading…
Reference in a new issue