From efcd5cddeecd018ff9c01a2b6841e05a4ae77c0e Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Fri, 23 Oct 2015 16:58:21 +0200 Subject: debug eingebaut --- fernbedienung.lpr | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/fernbedienung.lpr b/fernbedienung.lpr index e83e7be..a3907e1 100644 --- a/fernbedienung.lpr +++ b/fernbedienung.lpr @@ -13,24 +13,31 @@ uses sysutils, lowlevelunit, irdecoderunit; var - irDecoder: tIRDecoder; - inputDatei: string; - cnt: longint; - watte: boolean; + irDecoder: tIRDecoder; + inputDatei: string; + cnt: longint; + watte,debug: boolean; begin inputDatei:=''; watte:=false; + debug:=false; for cnt:=1 to paramcount do begin if paramstr(cnt)='-W' then begin watte:=true; continue; end; + if paramstr(cnt)='-D' then begin + debug:=true; + continue; + end; if inputDatei<>'' then raise exception.create('Mehr als eine inputDatei angegeben!'); inputDatei:=paramstr(1); end; - irDecoder:=tIRDecoder.create(inputDatei,extractfilepath(paramstr(0))+'befehle.konf',watte); + + +irDecoder:=tIRDecoder.create(inputDatei,extractfilepath(paramstr(0))+'befehle.konf',watte,debug); repeat repeat -- cgit v1.2.3-70-g09d2