var fDesc=new Array();
fDesc[0] = "This is a software package designed to operate with existing programming adapters provided by Texas Instruments and other vendors.
Main features:
- Supports Joint Test Action Group (JTAG), and Spy-Bi-Wire (SBW) communication to MCU.
- Programs MSP430Fxx MCUs from Texas Instruments (See MCU list below).
- Easy to use GUI allows the user to configure all necessary options with ease.";
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 = '';
}
}