var fDesc=new Array();
fDesc[0] = "The initial release of the QSB Scope application configures a QSB-M device to stream analog input every 1.95ms and digital input when the input value changes (also limited to every 1.95ms). The resulting input is then displayed to look much like a basic oscilloscope.
The QSB Scope is capable of displaying 1 channel of analog and 4 channels of digital input. Any single channel can be configured to trigger a synchronized screen capture on a rising or falling edge. Basic trigger modes supported include auto, normal, and single sequence.";
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 = '';
}
}