From f0ddd071083c2b63bff79160af9572bb47780261 Mon Sep 17 00:00:00 2001 From: dxl <64101226@qq.com> Date: Tue, 19 Sep 2023 18:25:01 +0800 Subject: [PATCH] A bug has been marked and is waiting to be fixed. --- firmware/application/src/rfid/reader/hf/rc522.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/firmware/application/src/rfid/reader/hf/rc522.c b/firmware/application/src/rfid/reader/hf/rc522.c index 7df90ec..0aec993 100644 --- a/firmware/application/src/rfid/reader/hf/rc522.c +++ b/firmware/application/src/rfid/reader/hf/rc522.c @@ -599,6 +599,10 @@ uint8_t pcd_14a_reader_scan_once(picc_14a_tag_t *tag) { NRF_LOG_INFO("Tag SAK claimed to support ATS but tag NAKd RATS"); // return HF_ERR_ATS; } + /* + * FIXME: If there is an issue here, it will cause the label to lose its selected state. + * It is necessary to reselect the card after the issue occurs here. + */ } return HF_TAG_OK; }