X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/ca65d3af861fefa3395825cb39ba2ac144d2ff3b..b9411ebac8c2bb84db94f758b9c960d64519c5ce:/client/scripts/test_t55x7_bi.lua

diff --git a/client/scripts/test_t55x7_bi.lua b/client/scripts/test_t55x7_bi.lua
index 91445d43..e8950ab8 100644
--- a/client/scripts/test_t55x7_bi.lua
+++ b/client/scripts/test_t55x7_bi.lua
@@ -89,6 +89,7 @@ end
 
 function test()
 	local y
+	local block = "00"
 	for y = 1, 0x1D, 4 do
 		for _ = 1, #procedurecmds do
 			local pcmd = procedurecmds[_]
@@ -99,8 +100,9 @@ function test()
 
 				local config = pcmd:format(config1, y, config2)
 				dbg(('lf t55xx write 0 %s'):format(config))
-				
-				local writecmd = Command:new{cmd = cmds.CMD_T55XX_WRITE_BLOCK, arg1 = config ,arg2 = 0, arg3 = 0}
+		
+				config = tonumber(config,16) 		
+				local writecmd = Command:new{cmd = cmds.CMD_T55XX_WRITE_BLOCK,arg1 = config, arg2 = block, arg3 = "00", data = "00"}
 				local err = core.SendCommand(writecmd:getBytes())
 				if err then return oops(err) end
 				local response = core.WaitForResponseTimeout(cmds.CMD_ACK,TIMEOUT)
@@ -129,4 +131,4 @@ local function main(args)
 	test()
 	print( string.rep('--',20) )
 end
-main(args)
\ No newline at end of file
+main(args)