03f889962b
* message on successful card write * auth using factory key * auth using factory default * factory default screen * write standard iclass key * pass block explicitly * Fix array indexing, add empty detection * PicoPass: rename app and move to NFC group, minor code cleanup Co-authored-by: あく <alleteam@gmail.com>
35 lines
780 B
C
35 lines
780 B
C
#pragma once
|
|
|
|
#include "picopass_worker.h"
|
|
#include "picopass_i.h"
|
|
|
|
#include <furi.h>
|
|
#include <lib/toolbox/stream/file_stream.h>
|
|
|
|
#include <furi_hal.h>
|
|
|
|
#include <stdlib.h>
|
|
#include <rfal_rf.h>
|
|
|
|
#include <platform.h>
|
|
|
|
struct PicopassWorker {
|
|
FuriThread* thread;
|
|
Storage* storage;
|
|
Stream* dict_stream;
|
|
|
|
PicopassDeviceData* dev_data;
|
|
PicopassWorkerCallback callback;
|
|
void* context;
|
|
|
|
PicopassWorkerState state;
|
|
};
|
|
|
|
void picopass_worker_change_state(PicopassWorker* picopass_worker, PicopassWorkerState state);
|
|
|
|
int32_t picopass_worker_task(void* context);
|
|
|
|
void picopass_worker_detect(PicopassWorker* picopass_worker);
|
|
void picopass_worker_write(PicopassWorker* picopass_worker);
|
|
void picopass_worker_write_standard_key(PicopassWorker* picopass_worker);
|