3.22.B0F built fine on Linux x86_64 (FC15, FC16), and is running fine under both Linux and Windows Vista.
Here's an xmlrpc script I use to keep a couple of the fldigi instances pointed at the "hottest" bands for psk spotting. I keep another on 14070 all the time, so don't scan/tune to that frequency in the script #!/bin/bash flag=1; rig1="http://192.168.121.210:7362/RPC2" rig2="http://192.168.121.210:7363/RPC2" echo "Starting...." while [ "$flag" -eq 1 ] do mystr=`wget -q -O - http://pskreporter.info/cgi-bin/psk-freq.pl | grep -e 3580000 -e 7040000 -e 7070000 -e 10140000 -e 18100000 -e 21070000 -e 24920000 -e 28120000 | cut --delimiter=' ' -f 1` n=1 echo "$mystr" | while read line do arr[ $n ]="$line" if [ $line = "7040000" ] then line=7035000 fi if [ $n -eq 1 ] ; then old=`fldigi-shell -u $rig1 -c "text.clear_rx"` old=`fldigi-shell -u $rig1 -c "main.set_frequency $line"` new=`fldigi-shell -u $rig1 -c "main.get_frequency"` echo `date` Rig 1 - $new elif [ $n -eq 2 ] ; then old=`fldigi-shell -u $rig2 -c "text.clear_rx"` old=`fldigi-shell -u $rig2 -c "main.set_frequency $line"` new=`fldigi-shell -u $rig2 -c "main.get_frequency"` echo `date` Rig 1 - $new fi let "n = $n + 1" done sleep 900 done -- P.J. "Josh" Rovero Ham Radio: KK1D Web1: http://www.roveroresearch.org Web2: http://sites.google.com/site/roveroresearch/ _______________________________________________ fldigi-alpha mailing list [email protected] https://lists.berlios.de/mailman/listinfo/fldigi-alpha
