proxmark3/client/src/cmdlfem4x50.h

29 lines
900 B
C
Raw Normal View History

2020-06-15 20:31:43 +08:00
//-----------------------------------------------------------------------------
// Copyright (C) 2020 tharexde
//
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
// at your option, any later version. See the LICENSE.txt file for the text of
// the license.
//-----------------------------------------------------------------------------
// Low frequency EM4x50 commands
//-----------------------------------------------------------------------------
#ifndef CMDLFEM4X50_H__
#define CMDLFEM4X50_H__
2020-06-29 03:33:37 +08:00
#include"common.h"
2020-06-15 20:31:43 +08:00
int usage_lf_em4x50_info(void);
int usage_lf_em4x50_write(void);
int usage_lf_em4x50_write_password(void);
2020-06-29 03:33:37 +08:00
int usage_lf_em4x50_read(void);
int EM4x50Read(const char *Cmd, bool verbose);
2020-06-15 20:31:43 +08:00
int CmdEM4x50Info(const char *Cmd);
int CmdEM4x50Write(const char *Cmd);
int CmdEM4x50WritePassword(const char *Cmd);
2020-06-29 03:33:37 +08:00
int CmdEM4x50Read(const char *Cmd);
2020-06-15 20:31:43 +08:00
#endif