textual
[RRG-proxmark3.git] / client / src / cmdlfem4x70.h
blob75e3e27fc142202c6eeb7fcb668f9a3f36d30aa2
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2020 sirloins
3 //
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
6 // the license.
7 //-----------------------------------------------------------------------------
8 // Low frequency EM4x70 commands
9 //-----------------------------------------------------------------------------
11 #ifndef CMDLFEM4X70_H__
12 #define CMDLFEM4X70_H__
14 #include "common.h"
16 #define TIMEOUT 2000
18 int CmdLFEM4X70(const char *Cmd);
19 int CmdEM4x70Info(const char *Cmd);
20 int CmdEM4x70Write(const char *Cmd);
21 int CmdEM4x70Unlock(const char *Cmd);
22 int CmdEM4x70Auth(const char *Cmd);
23 int CmdEM4x70WritePIN(const char *Cmd);
24 int CmdEM4x70WriteKey(const char *Cmd);
26 int em4x70_info(void);
27 bool detect_4x70_block(void);
29 #endif