fixing iso14443b (issue #103): fix timing issue (speeding up

the decoders)
This commit is contained in:
pwpiwi 2015-06-03 13:28:28 +02:00
commit 09c66f1f09
2 changed files with 14 additions and 12 deletions

View file

@ -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;