5b8f147882
* nfc: add separate nfc_detect * nfc_worker: add callback and context * api-hal-nfc: return busy if rfal worker is running * nfc: introduce nfc_detect, change nfc_worker API, rework main nfc task * nfc_emulate: introduce nfc_emulate module * nfc: introduce nfc_emv module * nfc: introduce nfc_mifare_ul module * nfc: remove unused nfc_views * nfc: separate messages and models * nfc: remove unused nfc message types * nfc: remove message_queue from common api * view_dispatcher: delete internal queue in destructor * api-hal-nfc: fix rfal worker initialization condition Co-authored-by: あく <alleteam@gmail.com>
46 lines
954 B
C
46 lines
954 B
C
#pragma once
|
|
|
|
#include "nfc_i.h"
|
|
#include "nfc_worker.h"
|
|
|
|
#include <furi.h>
|
|
#include <stdbool.h>
|
|
|
|
#include <rfal_analogConfig.h>
|
|
#include <rfal_rf.h>
|
|
#include <rfal_nfc.h>
|
|
#include <rfal_nfca.h>
|
|
#include <rfal_nfcb.h>
|
|
#include <rfal_nfcf.h>
|
|
#include <rfal_nfcv.h>
|
|
#include <st25r3916.h>
|
|
#include <st25r3916_irq.h>
|
|
|
|
struct NfcWorker {
|
|
osThreadAttr_t thread_attr;
|
|
osThreadId_t thread;
|
|
|
|
osMessageQueueId_t message_queue;
|
|
NfcWorkerCallback callback;
|
|
void* context;
|
|
|
|
NfcWorkerState state;
|
|
ReturnCode error;
|
|
};
|
|
|
|
void nfc_worker_change_state(NfcWorker* nfc_worker, NfcWorkerState state);
|
|
|
|
void nfc_worker_task(void* context);
|
|
|
|
void nfc_worker_read_emv(NfcWorker* nfc_worker);
|
|
|
|
void nfc_worker_emulate_emv(NfcWorker* nfc_worker);
|
|
|
|
void nfc_worker_detect(NfcWorker* nfc_worker);
|
|
|
|
void nfc_worker_emulate(NfcWorker* nfc_worker);
|
|
|
|
void nfc_worker_field(NfcWorker* nfc_worker);
|
|
|
|
void nfc_worker_read_mf_ultralight(NfcWorker* nfc_worker);
|