var fDesc=new Array();
fDesc[0] = "This software is used for programming with ALL of Microchip microcontroller families which includes:
PIC10F, PIC12F, PIC16F, PIC18F, PIC18F-K, PIC18F-J, PIC24F-KA, PIC24F-J, PIC24H-J, dsPIC30F, dsPIC30F-SMPS,
dsPIC33F-J and PIC32MX. It is compatible with all MikroElektronika programmers for Microchip devices.
Now you can have all-in-one programmer that is substitute for older programmer software that has been
used for programming such as: PICFlash, dsPICFlash, Lv18PICFLASH, LvPICFLASH and PIC32FLASH.
This tool will bring a new great flexibility in programming devices with new features such as:
- Multiple programmer support: This software allows connection of more programmers at once.
Selection of programmer is done within programmer software.
- Monitor Voltages: This feature monitors voltages during programming operations.
Voltages available for monitoring are: Vpp and Vcc.
- Additional device information: An overview of device that is connected to programmer. It shows essential
information about microcontroller such as: Flash Memory, EEprom Data Memory, RAM, I/O Pins and many more.
- Drag and Drop Feature: You can drag .HEX file to program location and it will be loaded instantly.";
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 = '';
}
}