From 810f92dbab05edbdc4e9a7e04e7e4ed05decf089 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sat, 9 Mar 2019 08:29:37 +0100 Subject: [PATCH] FIX: 'lf visa read' - increase samples solves #123 --- client/cmdlfvisa2000.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/cmdlfvisa2000.c b/client/cmdlfvisa2000.c index 7d7cddb4d..031894728 100644 --- a/client/cmdlfvisa2000.c +++ b/client/cmdlfvisa2000.c @@ -154,7 +154,7 @@ int CmdVisa2kDemod(const char *Cmd) { // 64*96*2=12288 samples just in case we just missed the first preamble we can still catch 2 of them int CmdVisa2kRead(const char *Cmd) { - lf_read(true, 14000); + lf_read(true, 20000); return CmdVisa2kDemod(Cmd); }