fix:修改逻辑

This commit is contained in:
zms 2025-11-17 18:06:59 +08:00
parent afdcaddf68
commit 5dbfbe1b59

View File

@ -184,8 +184,9 @@ public class D331RtcmMessageExecutor implements Executor<D331RtcmMessage, Void>
buf.writeBytes(forwardBytes);
//推送策略F9P基站505兼容博通510推送
if ((deviceBs.getModel()==null || deviceBs.getModel() == GnssDevice.MODEL_G505) &&
(device.getModel()!=null && device.getModel()==GnssDevice.MODEL_G510)){
if (((deviceBs.getModel()==null || deviceBs.getModel() == GnssDevice.MODEL_G505) &&
(device.getModel()!=null && device.getModel()==GnssDevice.MODEL_G510))||
(deviceBs.getDeviceId().equals("6541918"))){
buf = insert1005(deviceBs, deviceId, buf);
}