mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-12 17:46:59 -07:00
Merge pull request #214 from jamchamb/fix-hf-reader
Fix recvLen variable name in hf_reader
This commit is contained in:
commit
086583f6d1
1 changed files with 2 additions and 2 deletions
|
@ -150,7 +150,7 @@ local function read15693()
|
|||
end
|
||||
|
||||
local count,cmd,recvLen,arg1,arg2 = bin.unpack('LLLL',result)
|
||||
data = string.sub(result,recvlen)
|
||||
data = string.sub(result,recvLen)
|
||||
info, err = parse15693(data)
|
||||
|
||||
if err then
|
||||
|
@ -189,4 +189,4 @@ end
|
|||
|
||||
return {
|
||||
waitForTag = waitForTag,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue