pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol/p206V202404/CommonV202404.java
@@ -172,9 +172,9 @@ public byte createCtrl(byte dir, byte funcCode){ byte b = dir;//DIR = 1(0x80),表示此帧报文是由终端发出的上行报文; b = (byte)(b | funcCode) ; //DIV = 1(0x40),表示此报文已被拆分为若干帧 //FCB = 1(0x08),表示只发一次 b = (byte)(b |0x08) ; //DIV = 1(0x20),表示此报文已被拆分为若干帧 //FCB = 1(0x10),表示只发一次 b = (byte)(b |0x10) ; //DIR = 0 下行,则功能码采用0 return b ; }