我有一个串行控制台会话,我需要回答设备中的具体问题。如果我输入命令“setup”,设备将启动一个设置向导,它会问我一些问题。我希望尽可能自动化此设置,以自动填充相关问题的值/答案。
这些问题与操作系统版本有关,总是有点不同 - 也是问题的顺序。正则表达式可能对此有所帮助。
将数据发送到串行连接设备并读取其输出的最佳方法是什么?我尝试使用以下脚本解决此问题,但它是在Windows Web服务器下无法读取控制台日志:
<!DOCTYPE html>
<html>
<header>
<meta charset="utf8">
</header>
<body>
<?php
//-- settings --//
//brainboxes serial ports
//on 'nix start with cu.usbserial-
//on windows starts with com : must be lower case in windows and end with a colon
$portName = 'COM35';
$baudRate = 9600;
$bits = 8;
$spotBit = 1;
?>
Serial Port Test<br>
================<br>
<br>
<?php
function echoFlush($string)
{
echo $string . "\n";
flush();
ob_flush();
}
if(!extension_loaded('dio'))
{
echoFlush( "PHP Direct IO does not appear to be installed for more info see: http://www.php.net/manual/en/book.dio.php" );
exit;
}
try
{
//the serial port resource
$bbSerialPort;
echoFlush( "Connecting to serial port: {$portName}<br><br>" );
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN')
{
$bbSerialPort = dio_open('\\\\.\COM35', O_RDWR);
//we're on windows configure com port from command line
exec("mode {$portName} baud={$baudRate} data={$bits} stop={$spotBit} parity=n xon=on");
}
else //'nix
{
$bbSerialPort = dio_open('\\\\.\COM35', O_RDWR | O_NOCTTY | O_NONBLOCK );
dio_fcntl($bbSerialPort, F_SETFL, O_SYNC);
//we're on 'nix configure com from php direct io function
dio_tcsetattr($bbSerialPort, array(
'baud' => $baudRate,
'bits' => $bits,
'stop' => $spotBit,
'parity' => 0
));
}
if(!$bbSerialPort)
{
echoFlush( "Could not open Serial port {$portName}<br><br>");
exit;
}
// send data
$dataToSend = "version\n";
echoFlush( "Writing to serial port data: \"{$dataToSend}\"<br>" );
if($bytesSent = dio_write($bbSerialPort, $dataToSend )) {
echoFlush( "Sent: {$bytesSent} bytes<br><br>" );
echoFlush( "Closing Port" );
dio_close($bbSerialPort);
}
}
?>
</body>
</html>
我希望有人可以帮助我。
注意:该设备是NetApp FAS-Head。
答案 0 :(得分:0)
您是否有该设备的文档?您应该检查它需要什么设置。当您打开实例化对象并且握手,newLine,RtsEnable,DtrEnable和Encoding属性设置正确时,您需要验证您是否具有正确的值:端口名称,波特率,奇偶校验位,数据位和停止位在你可以沟通之前。其中许多参数和属性都有默认值,这些默认值大部分时间都可以工作,但您的设备可能需要的设置与默认设置不同。特别是,Handshake属性必须设置为正确的值,否则您将无法进行通信。如果您的设备使用硬件握手,您将有许多项目需要验证才能运行。