00_ZWCUL.pm: parse culfw resend messages

git-svn-id: https://svn.fhem.de/fhem/trunk@10688 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2016-01-31 17:47:57 +00:00
parent 0d4658ec79
commit f918ae424f

View File

@ -3,7 +3,6 @@
package main; package main;
# TODO # TODO
# resend in firmware
# static routing: to and from the device # static routing: to and from the device
# automatic routing via neighborUpdate # automatic routing via neighborUpdate
# explorer frames # explorer frames
@ -397,6 +396,12 @@ ZWCUL_Parse($$$$$)
return; return;
} }
if($rmsg =~ m/^zr(..)$/) {
Log3 $hash, 5, "$me fw-resend nr ".hex($1);
return;
}
my ($H, $S, $F, $f, $sn, $L, $T, $P, $C); my ($H, $S, $F, $f, $sn, $L, $T, $P, $C);
if($s100 && $rmsg =~ '^z(........)(..)(..)(.)(.)(..)(..)(.*)(....)$') { if($s100 && $rmsg =~ '^z(........)(..)(..)(.)(.)(..)(..)(.*)(....)$') {
($H,$S,$F,$f,$sn,$L,$T,$P,$C) = ($1,$2,$3,$4,$5,$6,$7,$8,$9); ($H,$S,$F,$f,$sn,$L,$T,$P,$C) = ($1,$2,$3,$4,$5,$6,$7,$8,$9);