mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-05-04 22:19:38 +00:00
fhem.pl: fixing IODev issues
git-svn-id: https://svn.fhem.de/fhem/trunk@5175 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
48fdea1f47
commit
6c1722efc6
@ -444,8 +444,9 @@ $attr{global}{motd} = "$sc_text\n\n"
|
|||||||
|
|
||||||
$init_done = 1;
|
$init_done = 1;
|
||||||
foreach my $d (keys %defs) {
|
foreach my $d (keys %defs) {
|
||||||
if(defined($defs{$d}{IODev}) && $defs{$d}{IODev} == 0) {
|
if($defs{$d}{IODevMissing}) {
|
||||||
Log 3, "No I/O device found for $defs{$d}{NAME}";
|
Log 3, "No I/O device found for $defs{$d}{NAME}";
|
||||||
|
delete $defs{$d}{IODevMissing};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
DoTrigger("global", "INITIALIZED", 1);
|
DoTrigger("global", "INITIALIZED", 1);
|
||||||
@ -1564,12 +1565,14 @@ AssignIoPort($;$)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if($hash->{IODev}) {
|
if($hash->{IODev}) {
|
||||||
$attr{$hash->{NAME}}{IODev} = $hash->{IODev}{NAME};
|
$attr{$hash->{NAME}}{IODev} = $hash->{IODev}{NAME}
|
||||||
|
if($hash->{TYPE} ne "CUL_WS"); # See CUL_WS_Attr() for details
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
if($init_done) {
|
if($init_done) {
|
||||||
Log 3, "No I/O device found for $hash->{NAME}"
|
Log 3, "No I/O device found for $hash->{NAME}"
|
||||||
} else {
|
} else {
|
||||||
$hash->{IODev} = 0;
|
$hash->{IODevMissing} = 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return undef;
|
return undef;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user