2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-02-01 01:09:47 +00:00

00_CUL.pm: Ignore keepalive (V*) messages (Forum #36529)

git-svn-id: https://svn.fhem.de/fhem/trunk@8503 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2015-04-30 14:58:42 +00:00
parent ac2a6ebf96
commit b41f5529b2

View File

@ -794,6 +794,10 @@ CUL_Parse($$$$@)
Dispatch($hash, $rmsg, undef);
return;
}
if($rmsg =~ m/^V/) { # CUN* keepalive
Log3 $name, 4, "CUL_Parse: $name $rmsg";
return;
}
my $rssi;
my $dmsg = $rmsg;