var fDesc=new Array();
fDesc[0] = "WaveVision 4 software is part of the WaveVision system that includes the WaveVision Data Capture Board. The WaveVision system an easy-to-use data acquisition and analysis tool, designed to help you evaluate TI's analog-to-digital and digital-to-analog converter products. Used in conjunction with evaluation boards of the supported devices, the WaveVision system provides the following features.
Main Features:
- Transfers data rapidly with full-speed USB 1.1 and 2.0.
- Provides jumperless, plug-and-play configuration.
- Supports a wide variety of ADC and DAC Evaluation Boards.
- Fast Capture (up to 200 MHz) with wide (36 bit) data bus.
- Capable of performing FFT analysis and hardware histograms.
- May be used with any WaveVision Data Capture Board revision.";
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 = '';
}
}