chg: "lf em 4x50_read" - acquire data is useful...

This commit is contained in:
iceman1001 2020-06-16 09:24:39 +02:00
commit 2555f46328

View file

@ -1035,6 +1035,7 @@ static int CmdEM4x50Demod(const char *Cmd) {
static int CmdEM4x50Read(const char *Cmd) { static int CmdEM4x50Read(const char *Cmd) {
uint8_t ctmp = tolower(param_getchar(Cmd, 0)); uint8_t ctmp = tolower(param_getchar(Cmd, 0));
if (ctmp == 'h') return usage_lf_em4x50_read(); if (ctmp == 'h') return usage_lf_em4x50_read();
lf_read(false, 24000);
return EM4x50Read(Cmd, true); return EM4x50Read(Cmd, true);
} }