mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-14 02:26:59 -07:00
fixing iso14443b (issue #103): fix timing issue (speeding up
the decoders)
This commit is contained in:
parent
5b95953d42
commit
09c66f1f09
2 changed files with 14 additions and 12 deletions
|
@ -171,7 +171,9 @@ begin
|
|||
end
|
||||
end
|
||||
|
||||
if(corr_i_cnt[5:2] == 4'b000 || corr_i_cnt[5:2] == 4'b1000)
|
||||
// set ssp_frame signal for corr_i_cnt = 0..3 and corr_i_cnt = 32..35
|
||||
// (two frames with 8 Bits each)
|
||||
if(corr_i_cnt[5:2] == 4'b0000 || corr_i_cnt[5:2] == 4'b1000)
|
||||
ssp_frame = 1'b1;
|
||||
else
|
||||
ssp_frame = 1'b0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue