From 8ba2f5b06ce3fc8a6bc0840bc9adbc24d42ec304 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sun, 15 Sep 2019 21:00:38 +0200 Subject: [PATCH] encourage --- client/cmdlfnexwatch.c | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/client/cmdlfnexwatch.c b/client/cmdlfnexwatch.c index bad9dea4f..5a5e127b1 100644 --- a/client/cmdlfnexwatch.c +++ b/client/cmdlfnexwatch.c @@ -81,10 +81,25 @@ static int CmdNexWatchRead(const char *Cmd) { return CmdNexWatchDemod(Cmd); } +static int CmdNexWatchClone(const char *Cmd) { + + // should be able to clone the raw hex. + PrintAndLogEx(INFO, " To be implemented, feel free to contribute!"); + return PM3_SUCCESS; +} + +static int CmdNexWatchSim(const char *Cmd) { + PrintAndLogEx(INFO, " To be implemented, feel free to contribute!"); + return PM3_SUCCESS; +} + + static command_t CommandTable[] = { - {"help", CmdHelp, AlwaysAvailable, "This help"}, - {"demod", CmdNexWatchDemod, AlwaysAvailable, "Demodulate a NexWatch tag (nexkey, quadrakey) from the GraphBuffer"}, - {"read", CmdNexWatchRead, IfPm3Lf, "Attempt to Read and Extract tag data from the antenna"}, + {"help", CmdHelp, AlwaysAvailable, "This help"}, + {"demod", CmdNexWatchDemod, AlwaysAvailable, "Demodulate a NexWatch tag (nexkey, quadrakey) from the GraphBuffer"}, + {"read", CmdNexWatchRead, IfPm3Lf, "Attempt to Read and Extract tag data from the antenna"}, + {"clone", CmdNexWatchClone, IfPm3Lf, "clone NexWatch tag"}, + {"sim", CmdNexWatchSim, IfPm3Lf, "simulate NexWatch tag"}, {NULL, NULL, NULL, NULL} };