var fDesc=new Array(); fDesc[0] = "The Modbus Test Pro software package is designed to allow developers of firmware and hardware devices to test their modbus communications. Also, the software is useful as a tool for testing and troubleshooting communications with SCADA modbus networked devices before implementing the modbus communications into a SCADA HMI software package, such as Wonderware or Cygnet.
Modbus Test Pro supports the four most common Modbus protocols, and the most common functions used. RTU modbus, ASCII modbus, and TCP modbus (Ethernet) are supported, along with sending RTU modbus over raw TCP/IP packets, as is implemented in many remote monitoring and data acquisition installations."; 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 = ''; } }