mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-21 04:11:48 +03:00
9b2d80d6b7
* FBT, applications: add MENUEXTERNAL app type * FBT, uFBT: build MENUEXTERNAL as EXTERNAL app * Loader menu: show external menu apps * LFRFID: move to sd card * FBT: always build External Applications list * Archive: look for external apps path * Infrared: move to sd card * Apps: add "start" apps * iButton: move to sd card * BadUSB: move to sd card * External apps: update icons * GPIO: move to sd card * Loader: look for external apps path * U2F: move to sd * SubGHz: move to sd * Apps: "on_start" metapackage * NFC: move to sd * Sync f7 and f18 Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
34 lines
670 B
C
34 lines
670 B
C
#pragma once
|
|
|
|
#include <lib/nfc/protocols/mifare_classic.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct Mfkey32 Mfkey32;
|
|
|
|
typedef enum {
|
|
Mfkey32EventParamCollected,
|
|
} Mfkey32Event;
|
|
|
|
typedef void (*Mfkey32ParseDataCallback)(Mfkey32Event event, void* context);
|
|
|
|
Mfkey32* mfkey32_alloc(uint32_t cuid);
|
|
|
|
void mfkey32_free(Mfkey32* instance);
|
|
|
|
void mfkey32_process_data(
|
|
Mfkey32* instance,
|
|
uint8_t* data,
|
|
uint16_t len,
|
|
bool reader_to_tag,
|
|
bool crc_dropped);
|
|
|
|
void mfkey32_set_callback(Mfkey32* instance, Mfkey32ParseDataCallback callback, void* context);
|
|
|
|
uint16_t mfkey32_get_auth_sectors(FuriString* string);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |