mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
sh sniff skip some bytes from data - arm side
This commit is contained in:
parent
dcea185ca2
commit
0b95c519ff
3 changed files with 55 additions and 4 deletions
|
@ -18,6 +18,13 @@
|
|||
|
||||
#include "proxmark3_arm.h"
|
||||
|
||||
int HfSniff(uint32_t samplesToSkip, uint32_t triggersToSkip, uint16_t *len);
|
||||
// what to do with skipped data
|
||||
#define HF_SNOOP_SKIP_NONE (0)
|
||||
#define HF_SNOOP_SKIP_DROP (1)
|
||||
#define HF_SNOOP_SKIP_MAX (2)
|
||||
#define HF_SNOOP_SKIP_MIN (3)
|
||||
#define HF_SNOOP_SKIP_AVG (4)
|
||||
|
||||
int HfSniff(uint32_t samplesToSkip, uint32_t triggersToSkip, uint16_t *len, uint8_t skipMode, uint8_t skipRatio);
|
||||
void HfPlotDownload(void);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue