]> git.zerfleddert.de Git - proxmark3-svn/blame - client/cmdhfmfu.h
CHG: the new NTAG_i2c_1K enums, broke the uint16_t size.. Had to go up one level.
[proxmark3-svn] / client / cmdhfmfu.h
CommitLineData
f38a1528 1#include "cmdhfmf.h"
99a71418 2#include "cmdhf14a.h"
e3ab50ca 3
0ec548dc 4#ifndef CMDHFMFU_H__
5#define CMDHFMFU_H__
6
f38a1528 7//standard ultralight
8int CmdHF14AMfUWrBl(const char *Cmd);
9int CmdHF14AMfURdBl(const char *Cmd);
99a71418 10
f38a1528 11//Crypto Cards
12int CmdHF14AMfUCRdBl(const char *Cmd);
13int CmdHF14AMfUCRdCard(const char *Cmd);
f38a1528 14int CmdHF14AMfucAuth(const char *Cmd);
f38a1528 15
16//general stuff
99a71418 17int CmdHF14AMfUDump(const char *Cmd);
e7e95088 18int CmdHF14AMfUInfo(const char *Cmd);
623db355 19uint32_t GetHF14AMfU_Type(void);
1ec21089 20
98cdd568 21int ul_print_type(uint16_t tagtype, uint8_t spacer);
22void ul_switch_off_field(void);
23
1c1c5f4c 24int usage_hf_mfu_dump(void);
e7e95088 25int usage_hf_mfu_info(void);
a8be77af 26
f38a1528 27int CmdHFMFUltra(const char *Cmd);
98cdd568 28
29typedef enum TAGTYPE_UL {
05f7accd 30 UNKNOWN = 0x000000,
31 UL = 0x000001,
32 UL_C = 0x000002,
33 UL_EV1_48 = 0x000004,
34 UL_EV1_128 = 0x000008,
35 NTAG = 0x000010,
36 NTAG_203 = 0x000020,
37 NTAG_210 = 0x000040,
38 NTAG_212 = 0x000080,
39 NTAG_213 = 0x000100,
40 NTAG_215 = 0x000200,
41 NTAG_216 = 0x000400,
42 MY_D = 0x000800,
43 MY_D_NFC = 0x001000,
44 MY_D_MOVE = 0x002000,
45 MY_D_MOVE_NFC = 0x004000,
46 NTAG_I2C_1K = 0x008000,
47 NTAG_I2C_2K = 0x010000,
48 MAGIC = 0x020000,
98cdd568 49 UL_MAGIC = UL | MAGIC,
50 UL_C_MAGIC = UL_C | MAGIC,
51 UL_ERROR = 0xFFFF,
52} TagTypeUL_t;
53
0ec548dc 54#endif
Impressum, Datenschutz