mirror of
https://github.com/Proxmark/proxmark3.git
synced 2024-11-11 09:59:45 +08:00
d5a72d2fee
cleaned up and error proof code. plus added new command lf search when online it will lf read - data samples 20000 - and test for EM410x, HID, IO Prox, and indala cards. when offline it will test current graphbuffer.
28 lines
958 B
C
28 lines
958 B
C
//-----------------------------------------------------------------------------
|
|
// Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
|
|
//
|
|
// 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 commands
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef CMDLF_H__
|
|
#define CMDLF_H__
|
|
|
|
int CmdLF(const char *Cmd);
|
|
|
|
int CmdLFCommandRead(const char *Cmd);
|
|
int CmdFlexdemod(const char *Cmd);
|
|
int CmdIndalaDemod(const char *Cmd);
|
|
int CmdIndalaClone(const char *Cmd);
|
|
int CmdLFRead(const char *Cmd);
|
|
int CmdLFSim(const char *Cmd);
|
|
int CmdLFSimBidir(const char *Cmd);
|
|
int CmdLFSimManchester(const char *Cmd);
|
|
int CmdLFSnoop(const char *Cmd);
|
|
int CmdVchDemod(const char *Cmd);
|
|
int CmdLFfind(const char *Cmd);
|
|
|
|
#endif
|