Forráskód Böngészése

no message

(cherry picked from commit 26d6761343c1a6cbc4fc7ccccee0ed32a9d91be3)
xiuwei 3 éve
szülő
commit
ced3da7c3f

+ 1 - 1
protocol-iec104/src/main/java/wei/yigulu/iec104/apdumodel/Cot.java

@@ -29,7 +29,7 @@ public class Cot {
 	public Cot readByte(Byte value) {
 		original = value;
 		test=value>>7==1;
-		negativeConfirm=(value&0x40)>>7==1;
+		negativeConfirm=(value&0x40)>>6==1;
 		not=value&0x3f;
 		return this;
 	}