|
|
@ -516,8 +516,7 @@ quint32 HonaLowLevelAPI::hsruParserIntS(const QVector<quint32>& honaData, |
|
|
|
else if(((honaData[Ind] & 0xF0000000) == 0x60000000) && (nextIntS == 6)) |
|
|
|
{ |
|
|
|
tempHonaPacketIntS.setCodeM(tempHonaPacketIntS.getCodeM() + |
|
|
|
(static_cast<qulonglong>(honaData[Ind] & 0x0FFFFFFF)) << |
|
|
|
36); |
|
|
|
((static_cast<qulonglong>(honaData[Ind] & 0x0FFFFFFF)) << 36)); |
|
|
|
tempHonaPacketIntS.setCodeL(0); |
|
|
|
nextIntS = 7; |
|
|
|
} |
|
|
@ -530,8 +529,7 @@ quint32 HonaLowLevelAPI::hsruParserIntS(const QVector<quint32>& honaData, |
|
|
|
else if(((honaData[Ind] & 0xF0000000) == 0x80000000) && (nextIntS == 8)) |
|
|
|
{ |
|
|
|
tempHonaPacketIntS.setCodeM(tempHonaPacketIntS.getCodeM() + |
|
|
|
(static_cast<qulonglong>(honaData[Ind] & 0x0FFFFFFF)) << |
|
|
|
36); |
|
|
|
((static_cast<qulonglong>(honaData[Ind] & 0x0FFFFFFF)) << 36)); |
|
|
|
nextIntS = 9; |
|
|
|
} |
|
|
|
|
|
|
@ -616,8 +614,7 @@ quint32 HonaLowLevelAPI::hsruParserResS(const QVector<quint32>& honaData, |
|
|
|
else if(((honaData[Ind] & 0xF0000000) == 0x60000000) && (nextResS == 6)) |
|
|
|
{ |
|
|
|
tempHonaPacketResS.setCodeM(tempHonaPacketResS.getCodeM() + |
|
|
|
(static_cast<qulonglong>(honaData[Ind] & 0x0FFFFFFF)) << |
|
|
|
36); |
|
|
|
((static_cast<qulonglong>(honaData[Ind] & 0x0FFFFFFF)) << 36)); |
|
|
|
tempHonaPacketResS.setCodeL(0); |
|
|
|
nextResS = 7; |
|
|
|
} |
|
|
@ -630,8 +627,7 @@ quint32 HonaLowLevelAPI::hsruParserResS(const QVector<quint32>& honaData, |
|
|
|
else if(((honaData[Ind] & 0xF0000000) == 0x80000000) && (nextResS == 8)) |
|
|
|
{ |
|
|
|
tempHonaPacketResS.setCodeM(tempHonaPacketResS.getCodeM() + |
|
|
|
(static_cast<qulonglong>(honaData[Ind] & 0x0FFFFFFF)) << |
|
|
|
36); |
|
|
|
((static_cast<qulonglong>(honaData[Ind] & 0x0FFFFFFF)) << 36)); |
|
|
|
nextResS = 9; |
|
|
|
} |
|
|
|
if(nextResS == packetLenResS) |
|
|
|