From 189262cff72d8adeb3e935be8dacfa1b72a32523 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Tue, 5 Mar 2024 09:08:45 +0100 Subject: [PATCH] text --- client/src/cmdlf.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/client/src/cmdlf.c b/client/src/cmdlf.c index c697a994d..7a50c7f8e 100644 --- a/client/src/cmdlf.c +++ b/client/src/cmdlf.c @@ -373,19 +373,21 @@ int CmdLFCommandRead(const char *Cmd) { } PrintAndLogEx(DEBUG, _CYAN_("Cmd read - settings")); - PrintAndLogEx(DEBUG, "-------------------"); - PrintAndLogEx(DEBUG, "delay... " _YELLOW_("%u")" zero... " _YELLOW_("%u") " one... " _YELLOW_("%u")" samples... %u", payload.delay, payload.period_0, payload.period_1, payload.samples); + PrintAndLogEx(DEBUG, "--------------------"); + PrintAndLogEx(DEBUG, "Delay..... " _YELLOW_("%u"), payload.delay); + PrintAndLogEx(DEBUG, "Zero...... " _YELLOW_("%u"), payload.period_0); + PrintAndLogEx(DEBUG, "One....... " _YELLOW_("%u"), payload.period_1); + PrintAndLogEx(DEBUG, "Samples... " _YELLOW_("%u"), payload.samples); PrintAndLogEx(DEBUG, ""); PrintAndLogEx(DEBUG, _CYAN_("Extra symbols")); - PrintAndLogEx(DEBUG, "-------------"); for (i = 0; i < LF_CMDREAD_MAX_EXTRA_SYMBOLS; i++) { if (payload.symbol_extra[i] == 0x00) continue; - PrintAndLogEx(DEBUG, " %c ... " _YELLOW_("%u"), payload.symbol_extra[i], payload.period_extra[i]); + PrintAndLogEx(DEBUG, "%c......... " _YELLOW_("%u"), payload.symbol_extra[i], payload.period_extra[i]); } PrintAndLogEx(DEBUG, ""); - PrintAndLogEx(DEBUG, "data... " _YELLOW_("%s"), payload.data); + PrintAndLogEx(DEBUG, "Cmd....... " _YELLOW_("%s"), payload.data); PrintAndLogEx(DEBUG, ""); if (cm) {