From 0749117f0bea19e0968a4430211927a24cfb08d5 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Mon, 11 Oct 2021 22:15:50 +0200 Subject: [PATCH] Allow hw version in offline mode, to display client info --- client/src/cmdhw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/cmdhw.c b/client/src/cmdhw.c index cf73c451d..ed2528a95 100644 --- a/client/src/cmdhw.c +++ b/client/src/cmdhw.c @@ -624,7 +624,7 @@ static int CmdTune(const char *Cmd) { static int CmdVersion(const char *Cmd) { CLIParserContext *ctx; CLIParserInit(&ctx, "hw version", - "Show version information about the connected Proxmark3", + "Show version information about the client and the connected Proxmark3", "hw version" ); @@ -898,7 +898,7 @@ static command_t CommandTable[] = { {"tearoff", CmdTearoff, IfPm3Present, "Program a tearoff hook for the next command supporting tearoff"}, {"tia", CmdTia, IfPm3Present, "Trigger a Timing Interval Acquisition to re-adjust the RealTimeCounter divider"}, {"tune", CmdTune, IfPm3Present, "Measure antenna tuning"}, - {"version", CmdVersion, IfPm3Present, "Show version information about the connected Proxmark3"}, + {"version", CmdVersion, AlwaysAvailable, "Show version information about the client and the connected Proxmark3, if any"}, {NULL, NULL, NULL, NULL} };