mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-01 05:07:03 +08:00
CHG: moved includes into header file where it belong
This commit is contained in:
parent
e7470660c2
commit
a8ee668770
2 changed files with 4 additions and 5 deletions
|
@ -8,11 +8,7 @@
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// BigBuf and functions to allocate/free parts of it.
|
// BigBuf and functions to allocate/free parts of it.
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
#include "bigbuf.h"
|
||||||
#include <stdint.h>
|
|
||||||
#include "proxmark3.h"
|
|
||||||
#include "apps.h"
|
|
||||||
#include "string.h"
|
|
||||||
|
|
||||||
// BigBuf is the large multi-purpose buffer, typically used to hold A/D samples or traces.
|
// BigBuf is the large multi-purpose buffer, typically used to hold A/D samples or traces.
|
||||||
// Also used to hold various smaller buffers and the Mifare Emulator Memory.
|
// Also used to hold various smaller buffers and the Mifare Emulator Memory.
|
||||||
|
|
|
@ -12,6 +12,9 @@
|
||||||
#ifndef __BIGBUF_H
|
#ifndef __BIGBUF_H
|
||||||
#define __BIGBUF_H
|
#define __BIGBUF_H
|
||||||
|
|
||||||
|
#include "proxmark3.h"
|
||||||
|
#include "apps.h"
|
||||||
|
#include "string.h"
|
||||||
|
|
||||||
#define BIGBUF_SIZE 40000
|
#define BIGBUF_SIZE 40000
|
||||||
#define MAX_FRAME_SIZE 256 // maximum allowed ISO14443 frame
|
#define MAX_FRAME_SIZE 256 // maximum allowed ISO14443 frame
|
||||||
|
|
Loading…
Reference in a new issue