From 5ea2c8851520ed67b42b62a25f08eb493c1ed41a Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Thu, 30 Oct 2014 14:29:31 +0100 Subject: [PATCH 1/1] FIX: maybe I should actually send the uid bytes with the command request.... --- client/cmdhf15.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/cmdhf15.c b/client/cmdhf15.c index 8ee8be92..76e1ea9c 100644 --- a/client/cmdhf15.c +++ b/client/cmdhf15.c @@ -318,6 +318,8 @@ int CmdHF15Sim(const char *Cmd) uid[0],uid[1],uid[2],uid[3],uid[4], uid[5], uid[6], uid[7]); UsbCommand c = {CMD_SIMTAG_ISO_15693, {0, 0, 0}}; + memcpy(c.d.asBytes,uid,8); + SendCommand(&c); return 0; } -- 2.39.2