X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/0db11b71efad3781186cc2da9f31686a6562d065..a930542b0a47f298f172aff7afe4dd8e2595a17b:/client/lualibs/commands.lua diff --git a/client/lualibs/commands.lua b/client/lualibs/commands.lua index e9675e79..afdba7e7 100644 --- a/client/lualibs/commands.lua +++ b/client/lualibs/commands.lua @@ -22,6 +22,9 @@ local _commands = { CMD_VERSION = 0x0107, CMD_STATUS = 0x0108, CMD_PING = 0x0109, + CMD_DOWNLOAD_EML_BIGBUF = 0x0110, + CMD_DOWNLOADED_EML_BIGBUF = 0x0111, + --// For low-frequency tags CMD_READ_TI_TYPE = 0x0202, CMD_WRITE_TI_TYPE = 0x0203, @@ -64,8 +67,7 @@ local _commands = { --// For the 13.56 MHz tags CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_15693 = 0x0300, - CMD_READ_SRI512_TAG = 0x0303, - CMD_READ_SRIX4K_TAG = 0x0304, + CMD_READ_SRI_TAG = 0x0303, CMD_ISO_14443B_COMMAND = 0x0305, CMD_READER_ISO_15693 = 0x0310, CMD_SIMTAG_ISO_15693 = 0x0311, @@ -235,6 +237,6 @@ function Command:getBytes() local data = self.data local cmd = self.cmd local arg1, arg2, arg3 = self.arg1, self.arg2, self.arg3 - return bin.pack("LLLLH",cmd, arg1, arg2, arg3, data); + return bin.pack("LLLLH", cmd, arg1, arg2, arg3, data); end return _commands