From d15a9500c6032708a74c715b34195f53855c3936 Mon Sep 17 00:00:00 2001 From: gornekich Date: Mon, 28 Mar 2022 16:57:36 +0300 Subject: [PATCH] [FL-2388] Fix Mifare Classic exit #1065 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: あく --- applications/nfc/nfc_worker.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/applications/nfc/nfc_worker.h b/applications/nfc/nfc_worker.h index d5ebc1be..a0a5ae83 100755 --- a/applications/nfc/nfc_worker.h +++ b/applications/nfc/nfc_worker.h @@ -25,6 +25,10 @@ typedef enum { } NfcWorkerState; typedef enum { + // Reserve first 50 events for application events + NfcWorkerEventReserved = 50, + + // Nfc worker common events NfcWorkerEventSuccess, NfcWorkerEventFail, NfcWorkerEventNoCardDetected,