mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-01 04:51:30 +08:00
FIX: the lua script hf_reader.lua now works with 14B tags.
This commit is contained in:
parent
eb7eab8570
commit
a930542b0a
1 changed files with 3 additions and 7 deletions
|
@ -5,8 +5,9 @@ This library utilises other libraries under the hood, but can be used as a gener
|
|||
]]
|
||||
|
||||
local reader14443A = require('read14a')
|
||||
local reader14443B = require('read14b')
|
||||
local cmds = require('commands')
|
||||
local TIMEOUT = 1000
|
||||
local TIMEOUT = 2000
|
||||
|
||||
local function sendToDevice(command, ignoreresponse)
|
||||
core.clearCommandBuffer()
|
||||
|
@ -24,14 +25,9 @@ end
|
|||
-- This will be moved to a separate 14443B library
|
||||
-------------------------------------------------------
|
||||
|
||||
local function read14443B()
|
||||
return nil, "Not implemented"
|
||||
end
|
||||
local reader14443B = {
|
||||
read = read14443B
|
||||
read = reader14443B.read14443b()
|
||||
}
|
||||
|
||||
|
||||
-------------------------------------------------------
|
||||
-- This will be moved to a separate 1593 library
|
||||
-------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue