var fDesc=new Array(); fDesc[0] = "Monitors the traffic flow and puts out an APRS object every 10 minutes to indicating how many packets have been heard in the last 10 minutes. UI-Traffic also supports monitoring of APRS network probes which are used to analyse the reliability of the RF APRS network.
You can use the internal UI-Traffic beacon for your PROBE(prefered) or set-up the beacon text in your usual APRS software to the value in the Beacon text to use. This can be handy for remote DIGIs which you want to configure as probes. I have DigiNed running with a probe set in it's beacon text calculated from this screen."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }