mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 01:55:38 +08:00
d19754567d
* .h include only the strict minimum for their own parsing * this forces all files to include explicitment their needs and not count on far streched dependencies * this helps Makefile to rebuild only the minimum * according to this rule, most standalone .h are now gone * big app.h is gone * remove seldom __cplusplus, if c++ happens, everything will have to be done properly anyway * all unrequired include were removed * split common/ into common/ (client+arm) and common_arm/ (os+bootloader) * bring zlib to common/ * bring stuff not really/not yet used in common back to armsrc/ or client/ * bring liblua into client/ * bring uart into client/ * move some portions of code around (dbprint, protocols,...) * rename unused files into *_disabled.[ch] to make it explicit * rename soft Uarts between 14a, 14b and iclass, so a standalone could use several without clash * remove PrintAndLogDevice * move deprecated-hid-flasher from client to tools * Makefiles * treat deps in armsrc/ as in client/ * client: stop on warning (-Werror), same as for armsrc/ Tested on: * all standalone modes * Linux
44 lines
1.8 KiB
C
44 lines
1.8 KiB
C
//-----------------------------------------------------------------------------
|
|
// Jonathan Westhues, Aug 2005
|
|
// Gerhard de Koning Gans, April 2008, May 2011
|
|
//
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
// the license.
|
|
//-----------------------------------------------------------------------------
|
|
// BigBuf and functions to allocate/free parts of it.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef __BIGBUF_H
|
|
#define __BIGBUF_H
|
|
|
|
#include "common.h"
|
|
|
|
#define BIGBUF_SIZE 40000
|
|
#define MAX_FRAME_SIZE 256 // maximum allowed ISO14443 frame
|
|
#define MAX_PARITY_SIZE ((MAX_FRAME_SIZE + 7) / 8)
|
|
#define MAX_MIFARE_FRAME_SIZE 18 // biggest Mifare frame is answer to a read (one block = 16 Bytes) + 2 Bytes CRC
|
|
#define MAX_MIFARE_PARITY_SIZE 3 // need 18 parity bits for the 18 Byte above. 3 Bytes are enough to store these
|
|
#define CARD_MEMORY_SIZE 4096
|
|
#define DMA_BUFFER_SIZE 256 //128 (how big is the dma?!?
|
|
|
|
uint8_t *BigBuf_get_addr(void);
|
|
uint8_t *BigBuf_get_EM_addr(void);
|
|
uint16_t BigBuf_max_traceLen(void);
|
|
void BigBuf_Clear(void);
|
|
void BigBuf_Clear_ext(bool verbose);
|
|
void BigBuf_Clear_keep_EM(void);
|
|
void BigBuf_Clear_EM(void);
|
|
uint8_t *BigBuf_malloc(uint16_t);
|
|
void BigBuf_free(void);
|
|
void BigBuf_free_keep_EM(void);
|
|
void BigBuf_print_status(void);
|
|
uint32_t BigBuf_get_traceLen(void);
|
|
void clear_trace(void);
|
|
void set_tracing(bool enable);
|
|
void set_tracelen(uint32_t value);
|
|
bool get_tracing(void);
|
|
bool RAMFUNC LogTrace(const uint8_t *btBytes, uint16_t iLen, uint32_t timestamp_start, uint32_t timestamp_end, uint8_t *parity, bool readerToTag);
|
|
uint8_t emlSet(uint8_t *data, uint32_t offset, uint32_t length);
|
|
|
|
#endif /* __BIGBUF_H */
|