var fDesc=new Array(); fDesc[0] = "The STM32 ST-LINK utility software facilitates fast in-system programming of the STM32 microcontroller families in development environments via the ST-LINK and ST-LINK/V2 tools.

The main window is composed of three zones and three bars, as follows: memory display zone, device information zone, and memory content zone. The title bar shows the name of the current menu, the menu bar is used to access the following STM32 ST-LINK utility functions: file menu, edit menu, view menu, target menu and the help menu."; 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 = ''; } }