X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/9ccfb3a8bcadeba557c285783f8ebbe2cde5fd3b..905c55de2bbe642412b47ed4e92344096c817fac:/client/lualibs/read14a.lua diff --git a/client/lualibs/read14a.lua b/client/lualibs/read14a.lua index 943a1722..5134fa94 100644 --- a/client/lualibs/read14a.lua +++ b/client/lualibs/read14a.lua @@ -78,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) @@ -86,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