var fDesc=new Array(); fDesc[0] = "With PIC Bootloader is the most convenient way for PIC programming, especially when you are debugging your program and need to transfer it to the target PIC chip many times in short time.
The bootloader solution presented here is intended to be used with 16F877(A) microcontroller. As all other bootloaders, this solution consists of a Windows application running on the PC and bootloader firmware running on the target PIC chip."; 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 = ''; } }