From 10493a0f191f51516b8becca07ea0f6c48575680 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Thu, 19 Jan 2017 20:18:21 +0100 Subject: [PATCH] CHG: fix covertyscan error CID 133851, Cardstate can't not be SIM_NOFIELD when it arrives to that switch statement. --- armsrc/iso14443b.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/armsrc/iso14443b.c b/armsrc/iso14443b.c index ed035d3a..8802623d 100644 --- a/armsrc/iso14443b.c +++ b/armsrc/iso14443b.c @@ -659,7 +659,7 @@ void SimulateIso14443bTag(uint32_t pupi) { */ switch (cardSTATE) { - case SIM_NOFIELD: + //case SIM_NOFIELD: case SIM_HALTED: case SIM_IDLE: { LogTrace(receivedCmd, len, 0, 0, NULL, TRUE); -- 2.39.5