var fDesc=new Array();
fDesc[0] = "TI-RTOS accelerates development schedules by eliminating the need to create basic system software functions from scratch. This package provides a complete Realtime Operating System for SimpleLink Wireless MCUs including protocol stacks, multicore communications, device drivers, and power management.
If you plan to use TI-RTOS within Code Composer Studio v6.0 or higher, it is recommended that you use the CCS App Center to install TI-RTOS instead of downloading it from TI website.";
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 = '';
}
}