2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-21 07:56:03 +00:00

00_ZWDongle.pm: set neighborUpdate to 80s (Forum #111794)

git-svn-id: https://svn.fhem.de/fhem/trunk@22148 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2020-06-09 18:25:46 +00:00
parent 8fbc27fe36
commit 1f28c668dd

View File

@ -652,7 +652,7 @@ ZWDongle_NUCheck($$$$)
return 0 if($msg !~ m/^0048/ || $hash->{calledFromNuCheck});
push @nuStack, "$fn/$msg";
if(@nuStack == 1) {
InternalTimer(gettimeofday+40, sub { # ZME timeout is 9-11s, #111794
InternalTimer(gettimeofday+80, sub { # ZME timeout is 9-11s, #111794
ZWDongle_NUCheck($hash, undef, "0048xx23", 0); # simulate fail
}, \@nuStack, 0);
}
@ -668,7 +668,7 @@ ZWDongle_NUCheck($$$$)
$hash->{calledFromNuCheck} = 1;
ZWDongle_Write($hash, $a[0], $a[1]);
delete($hash->{calledFromNuCheck});
InternalTimer(gettimeofday+40, sub {
InternalTimer(gettimeofday+80, sub {
ZWDongle_NUCheck($hash, undef, "0048xx23", 0); # simulate fail
}, \@nuStack, 0);
}