mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 18:33:18 +08:00
b014c96d68
fpga/lo_read.v (lf_field): new argument. fpga/fpga_lf.v: modify accordingly. armsrc/apps.h (FPGA_MAJOR_MODE_LF_READER): Rename as FPGA_MAJOR_MODE_LF_ADC. armsrc/apps.h (FPGA_LF_ADC_READER_FIELD): New LF option. armsrc/lfops.c: Modify accordingly. client/cmdlf.c (CmdLFSnoop): New command. armsrc/appmain.c, armsrc/lfops.c, client/cmdlf.h, include/usb_cmd.h: Modify accordingly.
27 lines
926 B
C
27 lines
926 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);
|
|
|
|
#endif
|