var fDesc=new Array();
fDesc[0] = "This PC based software enables rapid demonstration and testing of VFD modules using a serial/USB port.
The user can load a Product File (mm3) and pick selected commands to run in a Run List.
Features:
Controls VFD and LCD compatible modules
- USB / RS232 COM Port support
- USB to i80/M68 Parallel, SPI, async using USB3
- Easy double click Run List creation
- Send BMP files to display
- Transmit and Receive Windows
- 'HyperTerminal' and Programming Windows
- View and Export Hex code";
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 = '';
}
}