var fDesc=new Array();
fDesc[0] = "RKit-PPC is a toolset, which in conjunction with the Ride7 integrated development environment supports
application development for PPC-based microcontrollers, including part of STMicroelectronics’ SPC56x microcontroller family.
These tool sets operate on Windows 7 (including 64-bits), Windows Vista (including 64-bits) and Windows XP (32-bits only). Other versions of Windows, including Windows 2000, Windows XP 64-bits and Windows Server, are not supported. Virtual versions of Windows (under Linux, other versions of Windows or any other OS) are not supported.
RKit-PPC supports these microcontrollers:
- SPC560P40, SPC560P50, SPC560B50, SPC560B64.
- SPC563M60, SPC563M64 (debugging in VLE mode only)";
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 = '';
}
}