mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 13:23:51 -07:00
CHG: part of @piwi changes
This commit is contained in:
parent
e1ff9e66ab
commit
4bfc3ca8c9
2 changed files with 8 additions and 4 deletions
|
@ -124,14 +124,17 @@ uint16_t BigBuf_max_traceLen(void)
|
|||
void clear_trace() {
|
||||
traceLen = 0;
|
||||
}
|
||||
void set_tracelen(uint16_t tl)
|
||||
{
|
||||
traceLen=tl;
|
||||
void set_tracelen(uint16_t value) {
|
||||
traceLen = value;
|
||||
}
|
||||
void set_tracing(bool enable) {
|
||||
tracing = enable;
|
||||
}
|
||||
|
||||
bool get_tracing(void) {
|
||||
return tracing;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the number of bytes traced
|
||||
* @return
|
||||
|
|
|
@ -39,7 +39,8 @@ extern void BigBuf_print_status(void);
|
|||
extern uint16_t BigBuf_get_traceLen(void);
|
||||
extern void clear_trace(void);
|
||||
extern void set_tracing(bool enable);
|
||||
extern void set_tracelen(uint16_t tl);
|
||||
extern void set_tracelen(uint16_t value);
|
||||
extern bool get_tracing(void);
|
||||
extern bool RAMFUNC LogTrace(const uint8_t *btBytes, uint16_t iLen, uint32_t timestamp_start, uint32_t timestamp_end, uint8_t *parity, bool readerToTag);
|
||||
extern int LogTraceHitag(const uint8_t * btBytes, int iBits, int iSamples, uint32_t dwParity, int bReader);
|
||||
extern uint8_t emlSet(uint8_t *data, uint32_t offset, uint32_t length);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue