Welcome to mirror list, hosted at ThFree Co, Russian Federation.

nfc_worker_i.h « nfc « lib - github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bb4c31ddb7c2913498e681b8baaf3fb39abd36c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#pragma once

#include "nfc_worker.h"

#include <furi.h>
#include <lib/toolbox/stream/file_stream.h>

#include <lib/nfc/protocols/nfc_util.h>
#include <lib/nfc/protocols/emv.h>
#include <lib/nfc/protocols/mifare_common.h>
#include <lib/nfc/protocols/mifare_ultralight.h>
#include <lib/nfc/protocols/mifare_classic.h>
#include <lib/nfc/protocols/mifare_desfire.h>
#include <lib/nfc/protocols/nfca.h>

#include "helpers/nfc_debug_pcap.h"

struct NfcWorker {
    FuriThread* thread;
    Storage* storage;
    Stream* dict_stream;

    NfcDeviceData* dev_data;

    NfcWorkerCallback callback;
    void* context;

    NfcWorkerState state;

    NfcDebugPcapWorker* debug_pcap_worker;
};

void nfc_worker_change_state(NfcWorker* nfc_worker, NfcWorkerState state);

int32_t nfc_worker_task(void* context);

void nfc_worker_read(NfcWorker* nfc_worker);

void nfc_worker_emulate_uid(NfcWorker* nfc_worker);

void nfc_worker_emulate_mf_ultralight(NfcWorker* nfc_worker);

void nfc_worker_emulate_mf_classic(NfcWorker* nfc_worker);

void nfc_worker_mf_classic_dict_attack(NfcWorker* nfc_worker);

void nfc_worker_emulate_apdu(NfcWorker* nfc_worker);