From 427577fee6a52a52b35e92636fe7795019d2d8b9 Mon Sep 17 00:00:00 2001 From: tharexde Date: Sun, 29 Nov 2020 01:09:54 +0100 Subject: [PATCH] deleted em4x50 standalone mode --- armsrc/em4x50.c | 36 ------------------------------------ 1 file changed, 36 deletions(-) diff --git a/armsrc/em4x50.c b/armsrc/em4x50.c index 952f9cc8e..c85de02b1 100644 --- a/armsrc/em4x50.c +++ b/armsrc/em4x50.c @@ -1495,39 +1495,3 @@ void em4x50_sim(void) { lf_finalize(); reply_ng(CMD_LF_EM4X50_SIM, status, 0, 0); } - -//============================================================================== -// standalone mode functions -//============================================================================== - -int em4x50_standalone_brute(uint32_t start, uint32_t stop, uint32_t *pwd) { - - // envoke password search in standalone mode - - int status = false; - - em4x50_setup_read(); - - if (get_signalproperties() && find_em4x50_tag()) - status = brute(start, stop, pwd); - else - status = PM3_ETIMEOUT; - - lf_finalize(); - - return status; -} - -int em4x50_standalone_read(uint32_t *words) { - - int now = 0; - - em4x50_setup_read(); - - if (get_signalproperties() && find_em4x50_tag()) - if (find_double_listen_window(false) == PM3_SUCCESS) - while (get_word_from_bitstream(&words[now]) == EM4X50_TAG_WORD) - now++; - - return now; -}