mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-19 04:49:38 -07:00
fixing iso15693
* NOISE_THRESHOLD /= 2 (starting with c41dd5f
it became a relative threshold)
* remove superfluous reader initialization
This commit is contained in:
parent
f66d28afcc
commit
6792435739
1 changed files with 1 additions and 4 deletions
|
@ -368,7 +368,7 @@ void TransmitTo15693Reader(const uint8_t *cmd, size_t len, uint32_t *start_time,
|
||||||
// false if we are still waiting for some more
|
// false if we are still waiting for some more
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
|
|
||||||
#define NOISE_THRESHOLD 160 // don't try to correlate noise
|
#define NOISE_THRESHOLD 80 // don't try to correlate noise
|
||||||
#define MAX_PREVIOUS_AMPLITUDE (-1 - NOISE_THRESHOLD)
|
#define MAX_PREVIOUS_AMPLITUDE (-1 - NOISE_THRESHOLD)
|
||||||
|
|
||||||
typedef struct DecodeTag {
|
typedef struct DecodeTag {
|
||||||
|
@ -1571,9 +1571,6 @@ void ReaderIso15693(uint32_t parameter) {
|
||||||
|
|
||||||
LED_A_ON();
|
LED_A_ON();
|
||||||
|
|
||||||
Iso15693InitReader();
|
|
||||||
|
|
||||||
StartCountSspClk();
|
|
||||||
set_tracing(true);
|
set_tracing(true);
|
||||||
|
|
||||||
uint8_t TagUID[8] = {0x00};
|
uint8_t TagUID[8] = {0x00};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue