2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 16:56:54 +00:00

correct templist

git-svn-id: https://svn.fhem.de/fhem/trunk@5691 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
martinp876 2014-04-29 09:04:40 +00:00
parent 0ebcd2163c
commit d2f4f62d94
2 changed files with 2 additions and 3 deletions

View File

@ -5140,7 +5140,7 @@ sub CUL_HM_getRxType($) { #in:hash(chn or dev) out:binary coded Rx type
$rxtEntity |= ($rxtOfModel =~ m/f/)?0x80:0;#burstConditional
}
$rxtEntity = 1 if (!$rxtEntity);#always
$hash->{helper}{rxType} = $rxtEntity;
$hash->{helper}{rxType} = $rxtEntity if ($MId);#store if ID is prooven
}
return $rxtEntity;
}

View File

@ -592,7 +592,6 @@ sub HMinfo_tempList(@) { ######################################################
$val =~ tr/ +/ /;
$val =~ s/^ //;
$val =~ s/ $//;
@exec = ();
foreach my $eN(@el){
if ($tln =~ m/(P.)_._tempList/){
$val = lc($1)." ".$val;
@ -604,7 +603,7 @@ sub HMinfo_tempList(@) { ######################################################
$list =~ s/\>.*//;
push @entryFail,$eN." :".$list." respose:$x";
}
push @exec,$eN." ".$tln." exec ".$val;
push @exec,"$eN $tln exec $val" if (!(grep /$eN/,@exec));
}
}
}