mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-05 07:36:14 +08:00
CHG: textual changes.
CHG: remove unused #includes and added some comments
This commit is contained in:
parent
87c10b2a0f
commit
08439eea22
2 changed files with 8 additions and 13 deletions
|
@ -335,8 +335,8 @@ static command_t CommandTable[] = {
|
||||||
{"help", CmdHelp, 1, "This help"},
|
{"help", CmdHelp, 1, "This help"},
|
||||||
{"demod", CmdFdxDemod,1, "Attempt extract tag data from graphbuf"},
|
{"demod", CmdFdxDemod,1, "Attempt extract tag data from graphbuf"},
|
||||||
{"read", CmdFdxRead, 0, "Attempt to read and extract tag data"},
|
{"read", CmdFdxRead, 0, "Attempt to read and extract tag data"},
|
||||||
{"clone", CmdFdxClone,0, "clone animal ID tag"},
|
{"clone", CmdFdxClone,0, "Clone animal ID tag to T55x7"},
|
||||||
{"sim", CmdFdxSim, 0, "simulate animal ID tag"},
|
{"sim", CmdFdxSim, 0, "Animal ID tag simulator"},
|
||||||
{NULL, NULL, 0, NULL}
|
{NULL, NULL, 0, NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -8,28 +8,23 @@
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
#ifndef CMDLFFDX_H__
|
#ifndef CMDLFFDX_H__
|
||||||
#define CMDLFFDX_H__
|
#define CMDLFFDX_H__
|
||||||
#include <string.h>
|
#include "proxmark3.h" // Definitions, USB controls, etc
|
||||||
#include <inttypes.h>
|
#include "ui.h" // PrintAndLog
|
||||||
#include <math.h>
|
#include "util.h" // weigandparity
|
||||||
#include "proxmark3.h"
|
|
||||||
#include "ui.h"
|
|
||||||
#include "util.h"
|
|
||||||
#include "graph.h"
|
|
||||||
#include "cmdparser.h"
|
#include "cmdparser.h"
|
||||||
#include "cmddata.h"
|
#include "cmddata.h"
|
||||||
#include "cmdmain.h"
|
#include "cmdmain.h"
|
||||||
#include "cmdlf.h"
|
#include "cmdlf.h" // lf read
|
||||||
#include "crc16.h" // for checksum crc-16_ccitt
|
#include "crc16.h" // for checksum crc-16_ccitt
|
||||||
#include "protocols.h" // for T55xx config register definitions
|
#include "protocols.h" // for T55xx config register definitions
|
||||||
#include "lfdemod.h" // parityTest
|
#include "lfdemod.h" // parityTest
|
||||||
|
|
||||||
int CmdLFFdx(const char *Cmd);
|
int CmdLFFdx(const char *Cmd);
|
||||||
int CmdFdxClone(const char *Cmd);
|
int CmdFdxClone(const char *Cmd);
|
||||||
int CmdFdxSim(const char *Cmd);
|
int CmdFdxSim(const char *Cmd);
|
||||||
int CmdFdxRead(const char *Cmd);
|
int CmdFdxRead(const char *Cmd);
|
||||||
int CmdFdxDemod(const char *Cmd);
|
int CmdFdxDemod(const char *Cmd);
|
||||||
|
|
||||||
int getFDXBits(uint64_t national_id, uint16_t country, uint8_t isanimal, uint8_t isextended, uint32_t extended, uint8_t *bits);
|
int getFDXBits(uint64_t national_id, uint16_t country, uint8_t isanimal, uint8_t isextended, uint32_t extended, uint8_t *bits);
|
||||||
|
|
||||||
int usage_lf_fdx_clone(void);
|
int usage_lf_fdx_clone(void);
|
||||||
int usage_lf_fdx_sim(void);
|
int usage_lf_fdx_sim(void);
|
||||||
int usage_lf_fdx_read(void);
|
int usage_lf_fdx_read(void);
|
||||||
|
|
Loading…
Reference in a new issue