From 53831a4a3c51f79ee32a6700928a3637ba03a661 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sun, 6 Sep 2020 21:42:50 +0200 Subject: [PATCH] adapt standalone --- armsrc/Standalone/hf_legic.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/armsrc/Standalone/hf_legic.c b/armsrc/Standalone/hf_legic.c index 73590268e..6ebe6eff6 100644 --- a/armsrc/Standalone/hf_legic.c +++ b/armsrc/Standalone/hf_legic.c @@ -22,7 +22,6 @@ #include "legic.h" // legic_card_select_t struct #include "spiffs.h" // flashmem - /* * To list all dump files from flash: * @@ -106,6 +105,7 @@ void RunMod(void) { FpgaDownloadAndGo(FPGA_BITSTREAM_HF); Dbprintf("[=] >> HF Legic Prime Read/Simulate Started <<"); DbpString("[=] press and HOLD button to exit standalone mode"); + for (;;) { WDT_HIT(); @@ -163,7 +163,7 @@ void RunMod(void) { } // The read data is migrated to a MIM1024 card - LegicRfSimulate(ct); + LegicRfSimulate(ct, false); } }