PhpSerial:没有可用的样式-似乎无法正常工作
作者:互联网
我正在从事一个涉及使用Raspberry Pi上的UART引脚读写串行板的项目.但是,我已经撞墙了.每当我尝试使用PhpSerial时,我总是会收到错误消息:
Fatal error: No stty available, unable to run. in /var/www/PHP-Serial/examples/PhpSerial.php on line 56
我用输入尝试了许多配置:
// First we must specify the device. This works on both linux and windows (if
// your linux serial device is /dev/ttyS0 for COM1, etc)
$serial->deviceSet("/dev/ttyAMA0");
// We can change the baud rate, parity, length, stop bits, flow control
$serial->confBaudRate(38400);
$serial->confParity("none");
$serial->confCharacterLength(8);
$serial->confStopBits(1);
$serial->confFlowControl("none");
php / lighthttpd作为www-data运行,我尝试过将/ dev / ttyAMA0锁定给该用户,并且我已将拨出组添加到该用户.我在php.ini中看不到任何禁用功能或任何内容.我也没有按照wiki在pi上使用串行设备的标准设置,并且我能够使用以下方式在电路中读写数据:
sudo minicom -b 38400 -o -D /dev/ttyAMA0
这是错误所指的行:
if (substr($sysName, 0, 5) === "Linux") {
$this->_os = "linux";
if ($this->_exec("stty") === 0) {
register_shutdown_function(array($this, "deviceClose"));
} else {
trigger_error(
"No stty available, unable to run.",
E_USER_ERROR
);
}
我无法理解,但其他人可能会.提前致谢.
解决方法:
您的问题的解决方案如下:
您必须在PhpSerial.php类中更改以下代码行
从:
if ($this->_exec("stty") === 0) {
至:
if ($this->_exec("stty --version") === 0) {
=>因此,这可以解决“没有可用的stty,无法运行…”错误.查看该线程:https://www.raspberrypi.org/forums/viewtopic.php?f=91&t=100481
我还应该补充一点,例如在写串行数据之前,我必须延迟一下时间.
<?php
error_reporting(E_ALL);
ini_set(‘display_errors’,’1′);
include "PhpSerial.php";//serial class: https://github.com/Xowap/PHP-Serial/blob/develop/examples/VS421CPNTA.php
$serial = new phpSerial;
//$serial->deviceSet("/dev/ttyAMA0");
$serial->deviceSet("/dev/ttyACM0");
$serial->confBaudRate(9600);
$serial->confParity("none");
$serial->confCharacterLength(8);
$serial->confStopBits(1);
$serial->deviceOpen();
sleep(3);//delay
$serial->sendMessage("1");
$serial->deviceClose();
echo "Serial message sent! \n";
标签:raspberry-pi,serial-port,stty,php 来源: https://codeday.me/bug/20191029/1961307.html