fix:报文-蓝牙解析(日志打印)1
All checks were successful
JT808 CI/CD / build-and-deploy (push) Successful in 35s

This commit is contained in:
lzh
2025-12-12 17:58:41 +08:00
parent ae3a7a1f26
commit f64d1c3ad2

View File

@@ -63,7 +63,7 @@ public class TCPServerHandler extends ChannelInboundHandlerAdapter { // (1)
logMap.put("summary", "TCP Message Received");
// Special handling for Location Upload (0x0200) to show parsed details including Bluetooth
if (msgId == Consts.MSGID_LOCATION_UPLOAD) {
if (msgId == Consts.MSGID_LOCATION_UPLOAD || msgId == 0x0200) {
try {
LocationPack locPack = this.decoder.toLocationInfoUploadMsg(packageData);
logMap.put("details", locPack.toString());