2015-01-16 18:00:17 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// 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
|
|
|
|
|
|
|
|
|
|
|
|
#define BIGBUF_SIZE 40000
|
2015-01-27 15:34:48 +08:00
|
|
|
#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
|
2015-01-16 18:00:17 +08:00
|
|
|
#define CARD_MEMORY_SIZE 4096
|
2015-01-27 15:34:48 +08:00
|
|
|
#define DMA_BUFFER_SIZE 128
|
2015-01-16 18:00:17 +08:00
|
|
|
|
|
|
|
extern uint8_t *BigBuf_get_addr(void);
|
2015-01-27 15:34:48 +08:00
|
|
|
extern uint8_t *BigBuf_get_EM_addr(void);
|
|
|
|
extern uint16_t BigBuf_max_traceLen(void);
|
2015-01-16 18:00:17 +08:00
|
|
|
void BigBuf_Clear(void);
|
|
|
|
extern uint8_t *BigBuf_malloc(uint16_t);
|
|
|
|
extern void BigBuf_free(void);
|
2015-01-27 15:34:48 +08:00
|
|
|
extern void BigBuf_free_keep_EM(void);
|
2015-01-16 18:00:17 +08:00
|
|
|
|
2015-02-08 03:49:40 +08:00
|
|
|
uint16_t BigBuf_get_traceLen(void);
|
|
|
|
void clear_trace();
|
|
|
|
void set_tracing(bool enable);
|
|
|
|
bool RAMFUNC LogTrace(const uint8_t *btBytes, uint16_t iLen, uint32_t timestamp_start, uint32_t timestamp_end, uint8_t *parity, bool readerToTag);
|
2015-02-08 03:55:17 +08:00
|
|
|
int LogTraceHitag(const uint8_t * btBytes, int iBits, int iSamples, uint32_t dwParity, int bReader);
|
2015-01-16 18:00:17 +08:00
|
|
|
#endif /* __BIGBUF_H */
|