removing some crc

This commit is contained in:
iceman1001 2019-12-19 22:32:00 +01:00
commit 46783e519a

View file

@ -172,11 +172,15 @@ function main(args)
local d0_d15 = getdata(res)
payload = "80"
res, err = send(payload, {ignore_response = false, append_crc = false})
res, err = send(payload, {ignore_response = false, append_crc = true})
if err then return end
local d16_d31 = getdata(res)
-- remove crc bytes
d0_d15 = string.sub(d0_d15, 0, #d0_d15 - 4)
d16_d31 = string.sub(d16_d31, 0, #d16_d31 - 4)
print(block, d0_d15, d16_d31)
table.insert(block_data, d0_d15..d16_31)
end