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 = {}
-- nil, errormessage if unsuccessfull
local function sendToDevice(command, ignoreresponse)
- core.clearCommandBuffer()
+ --core.clearCommandBuffer(
local err = core.SendCommand(command:getBytes())
if err then
print(err)
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