mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-05 17:48:44 +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:
parent
72199b5fe7
commit
08b368408e
@ -8,6 +8,7 @@ use warnings;
|
||||
use MIME::Base64;
|
||||
|
||||
sub MAX_Define($$);
|
||||
sub MAX_Undef($$);
|
||||
sub MAX_Initialize($);
|
||||
sub MAX_Parse($$);
|
||||
sub MAX_Set($@);
|
||||
@ -42,6 +43,7 @@ MAX_Initialize($)
|
||||
Log 5, "Calling MAX_Initialize";
|
||||
$hash->{Match} = "^MAX";
|
||||
$hash->{DefFn} = "MAX_Define";
|
||||
$hash->{UndefFn} = "MAX_Undef";
|
||||
$hash->{ParseFn} = "MAX_Parse";
|
||||
$hash->{SetFn} = "MAX_Set";
|
||||
$hash->{AttrList} = "IODev do_not_notify:1,0 ignore:0,1 dummy:0,1 " .
|
||||
@ -79,6 +81,13 @@ MAX_Define($$)
|
||||
return undef;
|
||||
}
|
||||
|
||||
sub
|
||||
MAX_Undef($$)
|
||||
{
|
||||
my ($hash,$name) = @_;
|
||||
delete($modules{MAX}{defptr}{$hash->{addr}});
|
||||
}
|
||||
|
||||
sub
|
||||
MAX_DateTime2Internal($)
|
||||
{
|
||||
|
@ -85,6 +85,7 @@ CUL_MAX_Undef($$)
|
||||
{
|
||||
my ($hash, $name) = @_;
|
||||
RemoveInternalTimer($hash);
|
||||
delete($modules{CUL_MAX}{defptr});
|
||||
return undef;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user