var fDesc=new Array();
fDesc[0] = "CrossCore Embedded Studio is a world-class integrated development environment (IDE) for the Analog Devices Blackfin, SHARC and ARM processor families.
Main features:
- Eclipse based integrated development environment (IDE)
- Exceptional multi-core development & debug support
- Outstanding code generation tools, including Compilers, Assemblers, Linker, & Loader
- Mature algorithm libraries
- Improved system services & device drivers
- Easy integration with a family of software add-ins, including RTOS, TCP/IP Stack, USB Stack, & File System
- Compatibility with a variety of development hardware, including multi-core processing boards, and extender cards supporting audio & video capture, processing, and display";
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 = '';
}
}