var fDesc=new Array();
fDesc[0] = "The BIOS C6SDK is a software development kit that supports the C6748/OMAP-L138 EVM and L138/C6748 LCDK platforms. The following components are included with the SDK installation:
Finger printing and Face Detect demo using SYS/BIOS, StarterWare and DSP libraries
SYS/BIOS 6.3.33
Updated with CCSv5.1
Updated Code Gen Tools 7.3.1
Libraries — DSPlib, Image lib and Math lib
C6 Benchmarks
Network development kit (NDK)
Platform development kit(PDK) — BIOS drivers, StarterWare and CSL
EDMA Low level drivers
Flash Tools
XDC Tools";
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 = '';
}
}