From e12d22b6d9b7e8f96a8ba8654ec00fb6d13b8ee2 Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 4 Sep 2018 20:32:52 +0200 Subject: [PATCH] FIX: 'LF Standalone modes' - Ensure that noise check is performed for any device-side processing otherwise device-side processing will see all LF signals as noise. From: https://github.com/TeamWalrus/proxmark3/commit/8bddce80960fe50486567bd3a83bf918eab68c4d --- armsrc/lfsampling.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/armsrc/lfsampling.c b/armsrc/lfsampling.c index e9238cb18..c419d5781 100644 --- a/armsrc/lfsampling.c +++ b/armsrc/lfsampling.c @@ -202,6 +202,10 @@ uint32_t DoAcquisition(uint8_t decimation, uint32_t bits_per_sample, bool averag Dbprintf("buffer samples: %02x %02x %02x %02x %02x %02x %02x %02x ...", dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]); } + + // Ensure that noise check is performed for any device-side processing + justNoise(dest, bufsize); + return data.numbits; } /**