forked from Github_Repos/cvw
Removed two cycles of latency from the DTIM
This commit is contained in:
parent
3e8026dc21
commit
802238643a
@ -69,7 +69,7 @@ module dtim #(parameter BASE=0, RANGE = 65535) (
|
||||
busycount <= 0;
|
||||
HREADYTim <= #1 0;
|
||||
end else if (~HREADYTim) begin
|
||||
if (busycount == 2) begin // TIM latency, for testing purposes. *** test with different values
|
||||
if (busycount == 0) begin // TIM latency, for testing purposes. *** test with different values such as 2
|
||||
HREADYTim <= #1 1;
|
||||
end else begin
|
||||
busycount <= busycount + 1;
|
||||
|
Loading…
Reference in New Issue
Block a user