浏览代码

no message

wzh 5 年之前
父节点
当前提交
4c086f8d8b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      websocket/idcolWss.php

+ 1 - 1
websocket/idcolWss.php

@@ -210,7 +210,7 @@ $ws_worker->onMessage = function($connection, $data)
 // modbus crc 16 校验码计算
 function crc16($string) {
   $crc = 0xFFFF;
-  for ($x = 0; $x < strlen ($string); $x++) {
+  for ($x = 0; $x < strlen($string); $x++) {
     $crc = $crc ^ ord($string[$x]);
     for ($y = 0; $y < 8; $y++) {
       if (($crc & 0x0001) == 0x0001) {