var fDesc=new Array(); fDesc[0] = "With U-Config Configuration utility you can assigning a U-HID board number (1-8) if you have multiple boards, configure each pin of the board as the correct device type
(keyboard, gamepad, analog, quadrature mouse, power). The utility interacts with the board in real time, every time a change is made.

The configuration is stored in flash ROM on the board so it remains after power off/on. When the utility is run, it reads the configuration from the connected board(s) and displays it."; 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 = ''; } }