From a315254a880bbdaa6023f00160b36d51fb61d404 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Thu, 6 Jan 2022 19:46:35 +0100 Subject: [PATCH] style --- armsrc/iso14443a.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/armsrc/iso14443a.c b/armsrc/iso14443a.c index e2f2cf585..eff1d5b20 100644 --- a/armsrc/iso14443a.c +++ b/armsrc/iso14443a.c @@ -1354,8 +1354,8 @@ void SimulateIso14443aTag(uint8_t tagType, uint8_t flags, uint8_t *data, uint8_t // main loop bool finished = false; - bool button_pushed = BUTTON_PRESS(); - while (!button_pushed && !finished) { + while (finished == false) { + // BUTTON_PRESS check done in GetIso14443aCommandFromReader WDT_HIT(); tag_response_info_t *p_response = NULL;