Ver Fonte

[WallPadDevService]
1. 6410 현산향 대체품 난방v1 이슈 대응 동일하게 적용(0x10 길이 이슈)
2. 최신 APK 등록

jglee há 2 anos atrás
pai
commit
c270bf2519

BIN
10_Release/WallPadDevService.apk


+ 8 - 6
WallPadDevService/src/main/java/com/artncore/wallpaddevservice/driver/HeatingV1_Controller.java

@@ -951,12 +951,14 @@ public class HeatingV1_Controller extends DeviceManager
             DeviceLog("[EachRoomStatus_ReplyParsing] Reply is null");
             return null;
         }
-        if(Reply.length != 6)
-        {
-            // 길이 체크
-            Log.w(TAG, "[EachRoomStatus_ReplyParsing] Reply.length  fail ... " + Reply.length);
-            return null;
-        }
+        
+        //jglee - 6410현장에서 길이가 다른것이 들어오는 경우가 발생하여 2세대도 동일하게 적용
+//        if(Reply.length != 6)
+//        {
+//            // 길이 체크
+//            Log.w(TAG, "[EachRoomStatus_ReplyParsing] Reply.length  fail ... " + Reply.length);
+//            return null;
+//        }
 
         int index = 0;
         byte data = 0x00;