var fDesc=new Array();
fDesc[0] = "SCANALOGIC 2 - Reliable, compact and easy to use PC based logic analyzer and signal generator all in one tiny, compact & portable package!
Main features:
-Mouse-wheel zooming and panning
-Unlimited markers and time measurements
-Decoding:
UART
SPI
I2C
1-wire
LIN 1.x & LIN 2.x
-Maple bus.
(More protocols are deployed regularly with the FREE software updates)
-Data generator allowing to generate different types of sequences
-Flexible 4 channels PWM and FM sequences generator
(Variable Phase, Envelope and carrier)
-Save/load captured data for later visualization
-Save/load captured data for later playback
-Image export feature to facilitate technical report writing
-FFT (Fast Fourier Transformation) allowing in depth frequency analysis
-Software update feature for future evolutions
-Parameters and configuration auto-saving
-Possibility to configure colors for better visual appearance
-Dual data view mode (to compare between two data captures)";
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 = '';
}
}