From 59ea79b5834d366e92b4e882e1204376d556d1da Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Fri, 13 Sep 2019 00:38:04 +0200 Subject: [PATCH] CmdFSKsimTAG: swap fcH/fcL back, fix lf io/awid/pyramid sim --- armsrc/lfops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/armsrc/lfops.c b/armsrc/lfops.c index b535e155a..e5204a5a5 100644 --- a/armsrc/lfops.c +++ b/armsrc/lfops.c @@ -1070,9 +1070,9 @@ void CmdFSKsimTAG(uint8_t fchigh, uint8_t fclow, uint8_t separator, uint8_t clk, } for (i = 0; i < bitslen; i++) { if (bits[i]) - mod = fcAll(fclow, &n, clk+mod, &modCnt); - else mod = fcAll(fchigh, &n, clk+mod, &modCnt); + else + mod = fcAll(fclow, &n, clk+mod, &modCnt); } WDT_HIT();