diff --git a/client/src/cmdlf.c b/client/src/cmdlf.c index 95e71f40b..3cb9075a9 100644 --- a/client/src/cmdlf.c +++ b/client/src/cmdlf.c @@ -815,6 +815,14 @@ int CmdLFRead(const char *Cmd) { do { ret = lf_read_internal(realtime, verbose, samples); } while (cm && kbd_enter_pressed() == false); + + if (ret == PM3_SUCCESS) { + PrintAndLogEx(SUCCESS, "Got " _YELLOW_("%u") " samples", g_GraphTraceLen); + + if (getSignalProperties()->isnoise) { + PrintAndLogEx(INFO, "signal looks like noise"); + } + } return ret; }