|
|
@@ -1491,12 +1491,15 @@ public class MainActivity extends WpadActivity {
|
|
|
}
|
|
|
}
|
|
|
else if (msg.what == 10) {
|
|
|
- // 부트업 실패시 5초 간격으로 보내도록 수정
|
|
|
- Log.d(TAG , "NOTIFY_SENDBOOTUP_FAIL Retry!!!!");
|
|
|
- Intent Newintent = new Intent();
|
|
|
- Newintent.setAction(define.NOTIFY_ACNAME);
|
|
|
- Newintent.putExtra(define.NOTIBR_KIND,Common.DEVICE_BOOTUP_RETRY);
|
|
|
- sendBroadcast(Newintent);
|
|
|
+ if (Version.getModelType() != MODEL_TYPE.IHN_1010_I_ALT) {
|
|
|
+ // IHN-1010-I-ALT는 단지망 연동 버전이 아니므로 device_bootup.request를 전송하지 않는다.
|
|
|
+ // 부트업 실패시 5초 간격으로 보내도록 수정
|
|
|
+ Log.d(TAG , "NOTIFY_SENDBOOTUP_FAIL Retry!!!!");
|
|
|
+ Intent Newintent = new Intent();
|
|
|
+ Newintent.setAction(define.NOTIFY_ACNAME);
|
|
|
+ Newintent.putExtra(define.NOTIBR_KIND,Common.DEVICE_BOOTUP_RETRY);
|
|
|
+ sendBroadcast(Newintent);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
};
|
|
|
@@ -2537,7 +2540,7 @@ public class MainActivity extends WpadActivity {
|
|
|
WallPadiMAPNotifyAPI notify = new WallPadiMAPNotifyAPI(getApplicationContext());
|
|
|
notify.SetSocketWaitCount(3000);
|
|
|
notify.SetServerIPcfg(strServerIP, nServerPort);
|
|
|
- notify.Send_Device_BootUP(getMainVersion(), Setting_Version , svrVersion );
|
|
|
+ notify.Send_Device_BootUP(getMainVersion(), Setting_Version , svrVersion);
|
|
|
}
|
|
|
} catch (Exception e) {
|
|
|
e.printStackTrace();
|