Callsign alert

3 posts / 0 new
Last post
DL2KI
Callsign alert

Hi,

i have the impression that with my CQRLOG version "2.5.2 (001) 21-10-11" the function "Callsign alert" in DXCluster via "/usr/bin/notify-send ..." does not work.

Can anyone confirm this?

73, Wolfgang
DL2KI

oh1kh
Callsign alert

HI Wolfgang!

Does "/usr/bin/notify-send ..." work when you start it from command console ?
If that is ok make a simple alert to specific callsign (not partial call) and start cqrlog with cqrlog  --debug=1 > /tmp/debug.txt
You should be able to dig words "Spot is" and "Call alerting is" from debug.txt after alert should have been done.

The text is produced by:
if dmData.DebugLevel >=1 then Writeln('Spot is:',spot,#$0A,'----Call alerting is: ',call,',',band,',',mode,',',freq,',',freeText,'-----------');
dmDXCluster.RunCallAlertCmd(call,band,mode,freq,freeText);

And after that RunCallAlertCmd is executed.
The RunCallAlertCmd has also debug texts that should follow those texts above:

Either this if executable is not found:
if dmData.DebugLevel>=1 then Writeln('AProcess.Executable: ', paramList[0],' Not found!');

or this if it is found:
if dmData.DebugLevel>=1 then Writeln('AProcess.Executable: ',AProcess.Executable,' Parameters: ',AProcess.Parameters.Text);

Wit his information you should catch the point where alert fails.

--
Saku
OH1KH

DL2KI
Hi Saku,

Hi Saku,

"/usr/bin/notify-send ..." works fine from the command line.

I'll do some systematic experiments and see if I can find something.

73, Wolfgang
DL2KI