mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-10 23:42:40 -07:00
Merge pull request #244 from marshmellow42/master
fix lf file includes to include own .h
This commit is contained in:
commit
41f4bcabc6
8 changed files with 10 additions and 0 deletions
|
@ -13,6 +13,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdio.h> // sscanf
|
#include <stdio.h> // sscanf
|
||||||
#include "proxmark3.h" // Definitions, USB controls, etc
|
#include "proxmark3.h" // Definitions, USB controls, etc
|
||||||
|
#include "cmdlfawid.h"
|
||||||
#include "ui.h" // PrintAndLog
|
#include "ui.h" // PrintAndLog
|
||||||
#include "cmdparser.h" // CmdsParse, CmdsHelp
|
#include "cmdparser.h" // CmdsParse, CmdsHelp
|
||||||
#include "lfdemod.h" // parityTest +
|
#include "lfdemod.h" // parityTest +
|
||||||
|
|
|
@ -11,6 +11,8 @@
|
||||||
#ifndef CMDLFAWID_H__
|
#ifndef CMDLFAWID_H__
|
||||||
#define CMDLFAWID_H__
|
#define CMDLFAWID_H__
|
||||||
|
|
||||||
|
#include <stdint.h> // for uint_32+
|
||||||
|
|
||||||
int CmdLFAWID(const char *Cmd);
|
int CmdLFAWID(const char *Cmd);
|
||||||
int CmdAWIDReadFSK(const char *Cmd);
|
int CmdAWIDReadFSK(const char *Cmd);
|
||||||
int CmdAWIDSim(const char *Cmd);
|
int CmdAWIDSim(const char *Cmd);
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
|
#include "cmdlfem4x.h"
|
||||||
#include "proxmark3.h"
|
#include "proxmark3.h"
|
||||||
#include "ui.h"
|
#include "ui.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
|
@ -11,6 +11,8 @@
|
||||||
#ifndef CMDLFEM4X_H__
|
#ifndef CMDLFEM4X_H__
|
||||||
#define CMDLFEM4X_H__
|
#define CMDLFEM4X_H__
|
||||||
|
|
||||||
|
#include <stdbool.h> // for bool
|
||||||
|
|
||||||
extern int CmdLFEM4X(const char *Cmd);
|
extern int CmdLFEM4X(const char *Cmd);
|
||||||
extern void printEM410x(uint32_t hi, uint64_t id);
|
extern void printEM410x(uint32_t hi, uint64_t id);
|
||||||
extern int CmdEMdemodASK(const char *Cmd);
|
extern int CmdEMdemodASK(const char *Cmd);
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include "cmdlfhid.h"
|
||||||
#include "proxmark3.h"
|
#include "proxmark3.h"
|
||||||
#include "ui.h"
|
#include "ui.h"
|
||||||
#include "graph.h"
|
#include "graph.h"
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
#include "cmdlfio.h"
|
||||||
#include "proxmark3.h"
|
#include "proxmark3.h"
|
||||||
#include "data.h"
|
#include "data.h"
|
||||||
#include "graph.h"
|
#include "graph.h"
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#include "cmdlfpyramid.h"
|
||||||
#include "proxmark3.h"
|
#include "proxmark3.h"
|
||||||
#include "ui.h"
|
#include "ui.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include "proxmark3.h"
|
#include "proxmark3.h"
|
||||||
|
#include "cmdlfviking.h"
|
||||||
#include "ui.h"
|
#include "ui.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
#include "graph.h"
|
#include "graph.h"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue