2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-06 12:18:46 +00:00

MAX: implement Undef correctly to fix rereadcfg bug

git-svn-id: https://svn.fhem.de/fhem/trunk@2278 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
mgehre 2012-12-07 22:16:26 +00:00
parent 72199b5fe7
commit 08b368408e
2 changed files with 10 additions and 0 deletions

View File

@ -8,6 +8,7 @@ use warnings;
use MIME::Base64; use MIME::Base64;
sub MAX_Define($$); sub MAX_Define($$);
sub MAX_Undef($$);
sub MAX_Initialize($); sub MAX_Initialize($);
sub MAX_Parse($$); sub MAX_Parse($$);
sub MAX_Set($@); sub MAX_Set($@);
@ -42,6 +43,7 @@ MAX_Initialize($)
Log 5, "Calling MAX_Initialize"; Log 5, "Calling MAX_Initialize";
$hash->{Match} = "^MAX"; $hash->{Match} = "^MAX";
$hash->{DefFn} = "MAX_Define"; $hash->{DefFn} = "MAX_Define";
$hash->{UndefFn} = "MAX_Undef";
$hash->{ParseFn} = "MAX_Parse"; $hash->{ParseFn} = "MAX_Parse";
$hash->{SetFn} = "MAX_Set"; $hash->{SetFn} = "MAX_Set";
$hash->{AttrList} = "IODev do_not_notify:1,0 ignore:0,1 dummy:0,1 " . $hash->{AttrList} = "IODev do_not_notify:1,0 ignore:0,1 dummy:0,1 " .
@ -79,6 +81,13 @@ MAX_Define($$)
return undef; return undef;
} }
sub
MAX_Undef($$)
{
my ($hash,$name) = @_;
delete($modules{MAX}{defptr}{$hash->{addr}});
}
sub sub
MAX_DateTime2Internal($) MAX_DateTime2Internal($)
{ {

View File

@ -85,6 +85,7 @@ CUL_MAX_Undef($$)
{ {
my ($hash, $name) = @_; my ($hash, $name) = @_;
RemoveInternalTimer($hash); RemoveInternalTimer($hash);
delete($modules{CUL_MAX}{defptr});
return undef; return undef;
} }