2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-20 19:36:02 +00:00

10_ZWave.pm: fix ACK for multichannel get (Forum #54555)

git-svn-id: https://svn.fhem.de/fhem/trunk@11749 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2016-07-06 15:54:59 +00:00
parent bb709dd5e7
commit d8f5816de5

View File

@ -3637,7 +3637,7 @@ ZWave_processSendStack($$;$)
}
} elsif($stype eq "ackget" && $ackType eq "msg") {# compare answer class
$smsg = sprintf("%02x$1",length($1)/2) if($smsg =~ /^......600d....(.*)/);
$smsg = "13xxxx$1" if($smsg =~ /^......600d....(.*)/);
my $cs = substr($smsg, 6, 2);
my $cg = substr($omsg, 2, 2);
return if($cs ne $cg);