Remove debugging

git-svn-id: https://fhem.svn.sourceforge.net/svnroot/fhem/trunk/fhem@892 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig
2011-04-22 08:16:02 +00:00
parent 93a263e521
commit 27cf9063b0
3 changed files with 3 additions and 4 deletions

View File

@@ -302,7 +302,7 @@ KM271_Read($)
return;
}
if($buf eq "10") {
if($buf eq "10") {
if($hash->{DATASENT}) {
delete($hash->{DATASENT});
KM271_SimpleWrite($hash, "02") if(@{$hash->{SENDBUFFER}});

View File

@@ -244,7 +244,6 @@ CUL_HM_Parse($$)
if($cmd eq "8002") { # Ack
if($shash->{cmdStack}) { # Send next msg from the stack
Log 1, "PopCmd:" . $shash->{cmdStack}->[0];
CUL_HM_SendCmd($shash, shift @{$shash->{cmdStack}}, 1, 1);
delete($shash->{cmdStack}) if(!@{$shash->{cmdStack}});
$shash->{lastStackAck} = 1;
@@ -846,7 +845,7 @@ CUL_HM_PushCmdStack($$)
my ($hash, $cmd) = @_;
my @arr = ();
$hash->{cmdStack} = \@arr if(!$hash->{cmdStack});
Log 1, "PushStack: $cmd";
#Log 1, "PushStack: $cmd";
push(@{$hash->{cmdStack}}, $cmd);
}

View File

@@ -250,7 +250,6 @@ FileLog_Get($@)
my $col = $h->{col};
my $t = $h->{type};
my $val = undef;
my $dte = $fld[0];
@@ -290,6 +289,7 @@ FileLog_Get($@)
$val = $1 if($fld[$col] =~ m/^(\d+).*/o);
} else { # evaluate
$val = eval($h->{fn});
}