2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-09 20:57:11 +00:00

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;
# TODO
# resend in firmware
# static routing: to and from the device
# automatic routing via neighborUpdate
# explorer frames
@ -397,6 +396,12 @@ ZWCUL_Parse($$$$$)
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);
if($s100 && $rmsg =~ '^z(........)(..)(..)(.)(.)(..)(..)(.*)(....)$') {
($H,$S,$F,$f,$sn,$L,$T,$P,$C) = ($1,$2,$3,$4,$5,$6,$7,$8,$9);