var fDesc=new Array();
fDesc[0] = "The uM-FPU V3 IDE (Integrated Development Environment) provides a set of easy-to-use tools for developing applications using the uM-FPU V3 floating point coprocessor. The IDE runs on Windows XP, Vista, and Windows 7 and provides support for compiling, debugging, and programming the uM-FPU V3 floating point coprocessor.
Main Features
Compiling
• built-in code editor for entering symbol definitions and math expressions
• compiler generates code customized to the selected microcontroller
• pre-defined code generators included for most microcontrollers
• target description files can be defined by the user for customized code generation
• compiler code and assembler code can be mixed to support all uM-FPU V3 instructions
• output code can be copied to the microcontroller program";
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 = '';
}
}