-
Notifications
You must be signed in to change notification settings - Fork 23
/
PhpSerialModbus.php
196 lines (165 loc) · 5.37 KB
/
PhpSerialModbus.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<?php
/*
* PHP Serial Modbus Class (PhpSerialModbus) v0.9
*
* THIS PROGRAM COMES WITH ABSOLUTELY NO WARRANTIES !
* USE IT AT YOUR OWN RISKS !
*
* Copyright (C) 2016 under GPL v. 2 license
* 17 February 2016
*
* @author Luca Soltoggio
* http://www.arduinoelettronica.com/
* https://arduinoelectronics.wordpress.com/
*
* This class is a easy-to-use implementation of the
* ModBus RTU serial protocol (for example via RS485 port)
* acting as ModBus Master with the support of
* function codes from 1 to 6.
*
* (take a look at http://www.modbustools.com/modbus.html
* for more Modbus protocol infos)
*
*/
require_once 'PhpSerial.php';
class PhpSerialModbus
{
// Enable for debugging
public $debug = false;
public function __construct()
{
$this->serial = new PhpSerial;
}
// Initialize serial port with specified parameters
public function deviceInit($port='/dev/ttyUSB0', $baud=115200, $parity='none', $char=8, $sbits=1, $flow='none')
{
$this->serial->deviceSet($port);
$this->serial->confBaudRate($baud);
$this->serial->confParity($parity);
$this->serial->confCharacterLength($char);
$this->serial->confStopBits($sbits);
$this->serial->confFlowControl($flow);
exec('stty -F '.$port.' -brkint -icrnl -imaxbel -opost -isig -icanon -echo -echoe');
return $this->serial->_dState;
}
// Open serial port
public function deviceOpen()
{
$this->serial->deviceOpen();
return $this->serial->_dState;
}
// Close serial port
public function deviceClose()
{
$this->serial->deviceClose();
return $this->serial->_dState;
}
// Calculate CRC16 (ModBus)
public function crc16($data)
{
$crc = 0xFFFF;
for ($i = 0; $i < strlen($data); $i++)
{
$crc ^=ord($data[$i]);
for ($j = 8; $j !=0; $j--)
{
if (($crc & 0x0001) !=0)
{
$crc >>= 1;
$crc ^= 0xA001;
}
else
$crc >>= 1;
}
}
$highCrc=floor($crc/256);
$lowCrc=($crc-$highCrc*256);
return chr($lowCrc).chr($highCrc);
}
// Convert bin string to readable hex
private function bin2hexString ($binString)
{
$hexString=bin2hex($binString);
$hexString=chunk_split($hexString,2,"\\x");
$hexString= "\\x" . substr($hexString,0,-2);
return $hexString;
}
public function sendRawQuery ($string, $response = true) {
$this->serial->sendMessage($string);
if ($this->debug) print "DEBUG [query sent]: ".$this->bin2hexString($string)."\n";
if ($response) return $this->getResponse(); else return 1;
}
// Send Modbus query to slave
public function sendQuery ($slaveId, $functionCode, $registerAddress, $regCountOrData, $response = true)
{
if ( ($functionCode > 6 ) || ($functionCode < 1) ) {
if ($this->debug) print "DEBUG [invalid function code]\n";
return 0;
}
if ($functionCode < 5) $regCountOrData = dechex($regCountOrData);
$regHighByte=hexdec(substr($registerAddress,0,2));
$regLowByte=hexdec(substr($registerAddress,2));
$regCountOrData = str_pad($regCountOrData,4,"0",STR_PAD_LEFT);
$rcdHighByte=hexdec(substr($regCountOrData,0,2));
$rcdLowByte=hexdec(substr($regCountOrData,2));
// Create query and convert to a binary string
$query=array($slaveId, hexdec($functionCode), $regHighByte, $regLowByte, $rcdHighByte, $rcdLowByte);
$queryString=implode(array_map("chr",$query));
// Calculate CRC
$queryString.=$this->crc16($queryString);
if ($this->debug) print "DEBUG [query sent]: ".$this->bin2hexString($queryString)."\n";
// Send over serial port
$this->serial->sendMessage($queryString);
if ($response) return $this->getResponse(); else return 1;
}
// Read response from slave
public function getResponse ($raw=false,$offsetl=0,$offsetr=0)
{
// Time started (for timing)
$startTime = microtime(true);
$responseString = '';
// Allow until one second for the respone
while(((microtime(true)-$startTime)<1) && ($responseString=='') )
{
// Read serial port buffer (with three seconds timeout)
while( ($byte = $this->serial->ReadPort()) && ((microtime(true)-$startTime)<3.0)) {
$responseString=$responseString.$byte;
usleep(50);
}
}
if ($this->debug) print "DEBUG [response received]: ".$this->bin2hexString($responseString)."\n";
if ($raw) return $responseString;
$stringLength=strlen($responseString);
// If we have at least 5 bytes...
if ($stringLength>=5)
{
// ...but no more than 5
if ($stringLength==5) {
if ($this->debug) print "DEBUG [no valid data]\n";
return 0;
}
// CRC Check
$checkArray=(str_split($responseString,strlen($responseString)-2));
$crc=$this->crc16($checkArray[0]);
if ($crc!=$checkArray[1]) {
if ($this->debug) print "DEBUG [crc check failed]: (expected ".$this->bin2hexString($crc)." received ".$this->bin2hexString($checkArray[1]).")\n";
return 0;
}
// Convert string in array of bytes
$responseArray = str_split($responseString);
// This is the byte containing the numbere of data bytes
$bytesNum = hexdec(bin2hex($responseArray[2]));
// Create a new array with data without headers and CRC
$responseData = array_slice($responseArray,3+$offsetl,$bytesNum-$offsetr);
if ($this->debug) print "DEBUG [data]: ".$this->bin2hexString(implode($responseData))."\n";
// Return an array with hex data bytes
return array_map("bin2hex",$responseData);
} else
{
if ($this->debug) print "DEBUG [no response]\n";
return 0;
}
return 0;
}
}
?>