var fDesc=new Array(); fDesc[0] = "Embedded Wizard Studio is a solution that enables the creation of sophisticated graphical user interfaces for microcontrollers, even for the ones with limited resources. The GUI development is speeded up with the use of the Embedded Wizard’s WYSIWYG editing facility, the instant prototyping, simulating and debugging on PC without compiling, linking, and flashing to the target MCU. The program generates pure ANSI-C source code with no further dependencies on any other software stacks or components. The created GUI runs on bare metal or with any RTOS (real-time operating system)."; 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 = ''; } }