From 7ea0324a62d34b426f0867f14ebb68832756c894 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Wed, 7 Oct 2020 00:47:34 +0200 Subject: [PATCH] lf hid read - increase amount of samples to reaed in order to fit long formats --- client/src/cmdlfhid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/cmdlfhid.c b/client/src/cmdlfhid.c index a6ecd8e2f..4513c379f 100644 --- a/client/src/cmdlfhid.c +++ b/client/src/cmdlfhid.c @@ -154,7 +154,7 @@ static int CmdHIDDemod(const char *Cmd) { // this read is the "normal" read, which download lf signal and tries to demod here. static int CmdHIDRead(const char *Cmd) { (void)Cmd; // Cmd is not used so far - lf_read(false, 12000); + lf_read(false, 16000); return demodHID(true); }