mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-22 22:23:38 -07:00
and another missing include
This commit is contained in:
parent
bee9e986f1
commit
c91b945651
2 changed files with 16 additions and 15 deletions
|
@ -9,21 +9,6 @@
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
#include "cmddata.h"
|
#include "cmddata.h"
|
||||||
|
|
||||||
#include <stdio.h> // also included in util.h
|
|
||||||
#include <string.h> // also included in util.h
|
|
||||||
#include <inttypes.h>
|
|
||||||
#include <limits.h> // for CmdNorm INT_MIN && INT_MAX
|
|
||||||
#include "data.h" // also included in util.h
|
|
||||||
#include "util.h"
|
|
||||||
#include "cmdmain.h"
|
|
||||||
#include "ui.h" // for show graph controls
|
|
||||||
#include "graph.h" // for graph data
|
|
||||||
#include "cmdparser.h"// already included in cmdmain.h
|
|
||||||
#include "usb_cmd.h" // already included in cmdmain.h and proxmark3.h
|
|
||||||
#include "lfdemod.h" // for demod code
|
|
||||||
#include "crc.h" // for pyramid checksum maxim
|
|
||||||
#include "crc16.h" // for FDXB demod checksum
|
|
||||||
#include "loclass/cipherutils.h" // for decimating samples in getsamples
|
|
||||||
|
|
||||||
uint8_t DemodBuffer[MAX_DEMOD_BUF_LEN];
|
uint8_t DemodBuffer[MAX_DEMOD_BUF_LEN];
|
||||||
uint8_t g_debugMode = 0;
|
uint8_t g_debugMode = 0;
|
||||||
|
|
|
@ -16,6 +16,22 @@
|
||||||
#include <stdbool.h> //bool
|
#include <stdbool.h> //bool
|
||||||
#include "cmdparser.h" // for command_t
|
#include "cmdparser.h" // for command_t
|
||||||
|
|
||||||
|
#include <stdio.h> // also included in util.h
|
||||||
|
#include <string.h> // also included in util.h
|
||||||
|
#include <inttypes.h>
|
||||||
|
#include <limits.h> // for CmdNorm INT_MIN && INT_MAX
|
||||||
|
#include "data.h" // also included in util.h
|
||||||
|
#include "util.h"
|
||||||
|
#include "cmdmain.h"
|
||||||
|
#include "proxmark3.h" // sendcommand
|
||||||
|
#include "ui.h" // for show graph controls
|
||||||
|
#include "graph.h" // for graph data
|
||||||
|
#include "usb_cmd.h" // already included in cmdmain.h and proxmark3.h
|
||||||
|
#include "lfdemod.h" // for demod code
|
||||||
|
#include "crc.h" // for pyramid checksum maxim
|
||||||
|
#include "crc16.h" // for FDXB demod checksum
|
||||||
|
#include "loclass/cipherutils.h" // for decimating samples in getsamples
|
||||||
|
|
||||||
command_t * CmdDataCommands();
|
command_t * CmdDataCommands();
|
||||||
|
|
||||||
int CmdData(const char *Cmd);
|
int CmdData(const char *Cmd);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue