var fDesc=new Array();
fDesc[0] = "KDI Universal Programmer supports most of the classic and Mega AVR and the MCS-51 microcontrollers and also the 2-Wire and the 3-Wire serial EEPROMs. Support for new devices will be added with new versions of the KDI universal programmer.
Features:
- Supports all versions of Microsoft® Windows® including Windows 95/98/Me/NT/2000/XP
- Manually editable input and output data arrays
- Parallel programming, a fast and reliable programming method
- Programs both Flash and EEPROM
- Supports Fuses and Lock Bits Programming
- Newer versions of the software are always available on KDI's website
- Parallel port interface to PC for programming and control
- Digital warranty system
- Programs both the AVR and the MCS-51 (8051) microcontrollers families
- Programs both the 2-Wire (I2C) and the 3-Wire (Microwire) serial EEPROMs
- Accepts both ".bin" and ".hex" files
- Automatic detecting of the chip
- Saving the microcontroller's Flash and EEPROM memory to disk";
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 = '';
}
}