mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-04 07:11:10 +08:00
FIX: ISO15, increased reading distance by letting tag some time to powerup.
This commit is contained in:
parent
2954e1d040
commit
2d283c42a6
1 changed files with 6 additions and 6 deletions
|
@ -534,11 +534,11 @@ void AcquireRawAdcSamplesIso15693(void) {
|
|||
SetAdcMuxFor(GPIO_MUXSEL_HIPKD);
|
||||
FpgaSetupSsc();
|
||||
// Give the tags time to energize
|
||||
FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER_RX_XCORR);
|
||||
SpinDelay(100);
|
||||
//FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER_RX_XCORR);
|
||||
|
||||
// Now send the command
|
||||
FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER_TX);
|
||||
SpinDelay(200);
|
||||
|
||||
uint8_t *buf = BigBuf_get_addr();
|
||||
|
||||
|
@ -668,7 +668,7 @@ void Iso15693InitReader(void) {
|
|||
|
||||
// Give the tags time to energize
|
||||
FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER_RX_XCORR);
|
||||
SpinDelay(100);
|
||||
SpinDelay(200);
|
||||
|
||||
// Start the timer
|
||||
StartCountSspClk();
|
||||
|
|
Loading…
Reference in a new issue