mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-20 11:51:48 +03:00
16 lines
286 B
C
16 lines
286 B
C
|
#pragma once
|
||
|
|
||
|
#include <lib/nfc/protocols/mifare_classic.h>
|
||
|
|
||
|
bool magic_wupa();
|
||
|
|
||
|
bool magic_read_block(uint8_t block_num, MfClassicBlock* data);
|
||
|
|
||
|
bool magic_data_access_cmd();
|
||
|
|
||
|
bool magic_write_blk(uint8_t block_num, MfClassicBlock* data);
|
||
|
|
||
|
bool magic_wipe();
|
||
|
|
||
|
void magic_deactivate();
|