X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/1eb874ee3f7690cc92a720c0636fbe100e82b1e5..be67483e63430608982f1c92e02b59d7b4dc65b3:/client/lualibs/read14a.lua diff --git a/client/lualibs/read14a.lua b/client/lualibs/read14a.lua index 10e7c2d4..5134fa94 100644 --- a/client/lualibs/read14a.lua +++ b/client/lualibs/read14a.lua @@ -20,7 +20,9 @@ local ISO14A_COMMAND = { ISO14A_RAW = 8, ISO14A_REQUEST_TRIGGER = 0x10, ISO14A_APPEND_CRC = 0x20, - ISO14A_SET_TIMEOUT = 0x40 + ISO14A_SET_TIMEOUT = 0x40, + ISO14A_NO_SELECT = 0x80, + ISO14A_TOPAZMODE = 0x100 } local ISO14443a_TYPES = {} @@ -76,7 +78,7 @@ end -- nil, errormessage if unsuccessfull local function sendToDevice(command, ignoreresponse) - core.clearCommandBuffer() + --core.clearCommandBuffer( local err = core.SendCommand(command:getBytes()) if err then print(err) @@ -84,7 +86,7 @@ local function sendToDevice(command, ignoreresponse) end if ignoreresponse then return nil,nil end - local response = core.WaitForResponseTimeout(cmds.CMD_ACK,TIMEOUT) + local response = core.WaitForResponseTimeout(cmds.CMD_ACK, TIMEOUT) return response,nil end