X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/84c02e97e0925a44daece47ce19c265e22d5c772..1d99b0df4a0c1a2f42fe23ae32cc8f3d090bc985:/client/command.c diff --git a/client/command.c b/client/command.c index 3370748e..3b4c147f 100644 --- a/client/command.c +++ b/client/command.c @@ -202,12 +202,6 @@ static void CmdHi14asnoop(char *str) SendCommand(&c); } -static void CmdLegicRfSim(char *str) -{ - UsbCommand c={CMD_SIMULATE_TAG_LEGIC_RF}; - SendCommand(&c); -} - static void CmdLegicRfRead(char *str) { UsbCommand c={CMD_READER_LEGIC_RF}; @@ -2846,7 +2840,6 @@ static struct { {"indalademod", CmdIndalademod, 0, "['224'] -- Demodulate samples for Indala 64 bit UID (option '224' for 224 bit)"}, {"lcd", CmdLcd, 0, " -- Send command/data to LCD"}, {"lcdreset", CmdLcdReset, 0, "Hardware reset LCD"}, - {"legicrfsim", CmdLegicRfSim, 0, "Start the LEGIC RF tag simulator"}, {"legicrfread", CmdLegicRfRead, 0, "Start the LEGIC RF reader"}, {"load", CmdLoad, 1, " -- Load trace (to graph window"}, {"locomread", CmdLoCommandRead, 0, " <'0' period> <'1' period> ['h'] -- Modulate LF reader field to send command before read (all periods in microseconds) (option 'h' for 134)"}, @@ -3007,7 +3000,6 @@ void UsbCommandReceived(UsbCommand *c) if (c->cmd != CMD_DOWNLOADED_RAW_ADC_SAMPLES_125K) goto unexpected_response; int i; for(i=0; i<48; i++) sample_buf[i] = c->d.asBytes[i]; - printf("stored 48 samples\n"); received_command = c->cmd; return; default: