mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
EM4x05 login & read: don't use threshold for acquisition
This commit is contained in:
parent
1731db2f0c
commit
ae1b4b62b6
1 changed files with 2 additions and 2 deletions
|
@ -2527,7 +2527,7 @@ void EM4xLogin(uint32_t pwd) {
|
||||||
|
|
||||||
WaitUS(400);
|
WaitUS(400);
|
||||||
// We need to acquire more than needed, to help demodulators finding the proper modulation
|
// We need to acquire more than needed, to help demodulators finding the proper modulation
|
||||||
DoPartialAcquisition(20, false, 6000, 1000);
|
DoPartialAcquisition(0, false, 6000, 1000);
|
||||||
|
|
||||||
StopTicks();
|
StopTicks();
|
||||||
FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
|
FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
|
||||||
|
@ -2562,7 +2562,7 @@ void EM4xReadWord(uint8_t addr, uint32_t pwd, uint8_t usepwd) {
|
||||||
|
|
||||||
WaitUS(400);
|
WaitUS(400);
|
||||||
|
|
||||||
DoPartialAcquisition(20, false, 6000, 1000);
|
DoPartialAcquisition(0, false, 6000, 1000);
|
||||||
|
|
||||||
StopTicks();
|
StopTicks();
|
||||||
FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
|
FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue