mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
monster merge...
all those changes marshmellow did.. and more...
This commit is contained in:
parent
208550823d
commit
f28da2da6e
107 changed files with 5087 additions and 3777 deletions
|
@ -5,26 +5,28 @@
|
|||
#define CMDLFIO_H__
|
||||
|
||||
#include <stdio.h> // sscanf
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include "proxmark3.h" // Definitions, USB controls, etc
|
||||
#include "ui.h" // PrintAndLog
|
||||
#include "cmdparser.h" // CmdsParse, CmdsHelp
|
||||
#include "cmdlfawid.h" // AWID function declarations
|
||||
#include "lfdemod.h" // parityTest
|
||||
#include "util.h" // weigandparity
|
||||
#include "protocols.h" // for T55xx config register definitions
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include "data.h"
|
||||
#include "cmdmain.h"
|
||||
#include "cmddata.h"
|
||||
#include "lfdemod.h" // bitbytes_to_byte
|
||||
int CmdLFIO(const char *Cmd);
|
||||
int CmdIODemodFSK(const char *Cmd);
|
||||
int CmdIOClone(const char *Cmd);
|
||||
|
||||
extern int CmdLFIO(const char *Cmd);
|
||||
extern int CmdIOProxDemod(const char *Cmd);
|
||||
extern int CmdIOProxRead(const char *Cmd);
|
||||
extern int CmdIOProxSim(const char *Cmd);
|
||||
extern int CmdIOProxClone(const char *Cmd);
|
||||
|
||||
int getIOProxBits(uint8_t version, uint8_t fc, uint16_t cn, uint8_t *bits);
|
||||
int usage_lf_io_fskdemod(void);
|
||||
int usage_lf_io_clone(void);
|
||||
int usage_lf_io_sim(void);
|
||||
|
||||
extern int usage_lf_io_read(void);
|
||||
extern int usage_lf_io_clone(void);
|
||||
extern int usage_lf_io_sim(void);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue