var fDesc=new Array(); fDesc[0] = "RS-232 Monitor allow to reseive data from serial port and view it in ASCII TEXT, BINARY, DECIMAL, HEXADECIMAL, FLOAT (IEEE754) format. Available formats are TEXT, HEX, BIN, DEC, FLOAT.


Main features:
-Set font and background color of main window.
-Set number of rows. RS232 Monitor will shift up all rows when the last row is full.
-The number of Columns is a number of data units in the row.
-Data unit is a sequence of received bytes (1-4 specified in Length field), which is -interpreted according to specified Format.
-To save formatted data to a file, set the flag Save to file."; 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 = ''; } }