This commit is contained in:
pringgosutono
2026-04-27 13:24:03 +07:00
parent a11e0ea832
commit 84dfa4f5ee
2 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@ module.exports = {
};
module.exports = pool;
// module.exports = pool;

View File

@ -154,7 +154,7 @@ function decodeAvlData(buf) {
const crcReceived = buf.readUInt32BE(offset)
const crc = buf.readUInt32BE(offset)
const crcStr = "0x" + crc.toString(16)
console.log(`CRC: ${crcStr}`)
// console.log(`CRC: ${crcStr}`)
return { codec: "8E", count: recordCount, records, crcStr }
}