mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-14 03:03:14 +08:00
FIX: 'LF IO FSKDEMOD' - no call to turn of the antenna when exit
Thanks to @samyk https://github.com/Proxmark/proxmark3/issues/203
This commit is contained in:
parent
501c666b10
commit
61d36d3695
1 changed files with 3 additions and 1 deletions
|
@ -1106,7 +1106,7 @@ void CmdIOdemodFSK(int findone, int *high, int *low, int ledcontrol)
|
|||
if (ledcontrol) LED_A_OFF();
|
||||
*high=code;
|
||||
*low=code2;
|
||||
return;
|
||||
goto out;
|
||||
}
|
||||
code=code2=0;
|
||||
version=facilitycode=0;
|
||||
|
@ -1115,6 +1115,8 @@ void CmdIOdemodFSK(int findone, int *high, int *low, int ledcontrol)
|
|||
|
||||
WDT_HIT();
|
||||
}
|
||||
OUT:
|
||||
FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
|
||||
DbpString("Stopped");
|
||||
if (ledcontrol) LED_A_OFF();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue