From a4dd4eb5b5a104158ce5985eb743f5e2f9b20025 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Wed, 9 Aug 2017 18:52:35 +0200 Subject: [PATCH] CHG: updated some helptext, moved commands --- client/cmdlfvisa2000.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/client/cmdlfvisa2000.c b/client/cmdlfvisa2000.c index 2d90d5975..38868ce42 100644 --- a/client/cmdlfvisa2000.c +++ b/client/cmdlfvisa2000.c @@ -17,13 +17,13 @@ static int CmdHelp(const char *Cmd); int usage_lf_visa2k_clone(void){ PrintAndLog("clone a Visa2000 tag to a T55x7 tag."); - PrintAndLog("Usage: lf visa2k clone [h] "); + PrintAndLog("Usage: lf visa2000 clone [h] "); PrintAndLog("Options:"); PrintAndLog(" h : This help"); PrintAndLog(" : Visa2k card ID"); PrintAndLog(" : specify write to Q5 (t5555 instead of t55x7)"); PrintAndLog(""); - PrintAndLog("Sample: lf visa2k clone 112233"); + PrintAndLog("Sample: lf visa2000 clone 112233"); return 0; } @@ -31,12 +31,12 @@ int usage_lf_visa2k_sim(void) { PrintAndLog("Enables simulation of visa2k card with specified card number."); PrintAndLog("Simulation runs until the button is pressed or another USB command is issued."); PrintAndLog(""); - PrintAndLog("Usage: lf visa2k sim [h] "); + PrintAndLog("Usage: lf visa2000 sim [h] "); PrintAndLog("Options:"); PrintAndLog(" h : This help"); PrintAndLog(" : Visa2k card ID"); PrintAndLog(""); - PrintAndLog("Sample: lf visa2k sim 112233"); + PrintAndLog("Sample: lf visa2000 sim 112233"); return 0; } @@ -228,10 +228,10 @@ int CmdVisa2kSim(const char *Cmd) { static command_t CommandTable[] = { {"help", CmdHelp, 1, "This help"}, - {"demod", CmdVisa2kDemod, 1, "Demodulate an VISA2000 tag from the GraphBuffer"}, - {"read", CmdVisa2kRead, 0, "Attempt to read and extract tag data from the antenna"}, - {"sim", CmdVisa2kSim, 0, "Visa2000 tag simulator"}, + {"demod", CmdVisa2kDemod, 1, "demodulate an VISA2000 tag from the GraphBuffer"}, + {"read", CmdVisa2kRead, 0, "attempt to read and extract tag data from the antenna"}, {"clone", CmdVisa2kClone, 0, "clone Visa2000 to t55x7"}, + {"sim", CmdVisa2kSim, 0, "simulate Visa2000 tag"}, {NULL, NULL, 0, NULL} };