mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-13 01:56:59 -07:00
Set lower threshold for lf iodemod, it had too high threshold for filtering out noise. Now it works better at least with my antenna/setup
This commit is contained in:
parent
3400a4358d
commit
d0d1e24590
1 changed files with 1 additions and 1 deletions
|
@ -602,7 +602,7 @@ int IOdemodFSK(uint8_t *dest, size_t size)
|
||||||
}
|
}
|
||||||
idx=0;
|
idx=0;
|
||||||
//if not just noise
|
//if not just noise
|
||||||
if (testMax>170){
|
if (testMax>20){
|
||||||
// FSK demodulator
|
// FSK demodulator
|
||||||
size = fskdemod(dest, size,64,1,10,8); // RF/64 and invert
|
size = fskdemod(dest, size,64,1,10,8); // RF/64 and invert
|
||||||
if (size < 65) return -1; //did we get a good demod?
|
if (size < 65) return -1; //did we get a good demod?
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue