diff --git a/client/cmdlfem4x.c b/client/cmdlfem4x.c index 5493b124d..a8d7e06e3 100644 --- a/client/cmdlfem4x.c +++ b/client/cmdlfem4x.c @@ -468,7 +468,7 @@ static int CmdEM410xDemod(const char *Cmd) { // this read is the "normal" read, which download lf signal and tries to demod here. static int CmdEM410xRead(const char *Cmd) { - lf_read(true, 12288); + lf_read(false, 12288); return CmdEM410xDemod(Cmd); } @@ -625,7 +625,7 @@ static int CmdEM410xWatch(const char *Cmd) { PrintAndLogEx(WARNING, "\naborted via keyboard!\n"); break; } - lf_read(true, 12288); + lf_read(false, 12288); } while (CmdEM410xRead("") != PM3_SUCCESS); return PM3_SUCCESS; diff --git a/client/cmdlfnexwatch.c b/client/cmdlfnexwatch.c index e30a37a80..58ec81852 100644 --- a/client/cmdlfnexwatch.c +++ b/client/cmdlfnexwatch.c @@ -95,7 +95,7 @@ static int CmdNexWatchDemod(const char *Cmd) { //by marshmellow //see ASKDemod for what args are accepted static int CmdNexWatchRead(const char *Cmd) { - lf_read(true, 10000); + lf_read(false, 10000); return CmdNexWatchDemod(Cmd); } diff --git a/client/cmdlfverichip.c b/client/cmdlfverichip.c index 9bccefde4..fb2e4e777 100644 --- a/client/cmdlfverichip.c +++ b/client/cmdlfverichip.c @@ -78,7 +78,7 @@ static int CmdVerichipDemod(const char *Cmd) { } static int CmdVerichipRead(const char *Cmd) { - lf_read(true, 4096 * 2 + 20); + lf_read(false, 4096 * 2 + 20); return CmdVerichipDemod(Cmd); }