ZWDongle: change timeout to 1sec

git-svn-id: https://svn.fhem.de/fhem/trunk@5568 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig
2014-04-19 14:55:32 +00:00
parent bd0a68ea65
commit 65974113b4

View File

@@ -394,7 +394,7 @@ ZWDongle_Write($$$@)
my ($hash,$fn,$msg,$noStack) = @_;
if(!$noStack && $msg =~ m/^13/) { # SEND_DATA, wait for ACK
InternalTimer(gettimeofday()+0.5, "ZWave_HandleSendStack", $hash, 0)
InternalTimer(gettimeofday()+1, "ZWave_HandleSendStack", $hash, 0)
if(!int(@{$hash->{SendStack}}));
push @{$hash->{SendStack}}, $msg;
return if(int(@{$hash->{SendStack}}) > 1);
@@ -413,7 +413,7 @@ ZWave_HandleSendStack($)
RemoveInternalTimer($hash); # remove timer to avoid re-trigger
return if(!@{$hash->{SendStack}});
ZWDongle_Write($hash, "00", $hash->{SendStack}->[0], 1);
InternalTimer(gettimeofday()+0.5, "ZWave_HandleSendStack", $hash, 0);
InternalTimer(gettimeofday()+1, "ZWave_HandleSendStack", $hash, 0);
}
#####################################