mirror of
https://github.com/avakar/usbcorev.git
synced 2024-10-22 02:17:39 +08:00
Fixed ACK timing on toggle error.
This commit is contained in:
parent
fb2e32dc58
commit
ee47046404
@ -170,7 +170,7 @@ multisample5 se0_filter(
|
||||
reg[2:0] short_idle_counter;
|
||||
assign short_idle = short_idle_counter == 1'b0;
|
||||
always @(posedge clk_48) begin
|
||||
if (se0 || !j)
|
||||
if (se0 || !j || xpacket)
|
||||
short_idle_counter <= 3'b111;
|
||||
else if (short_idle_counter != 1'b0)
|
||||
short_idle_counter <= short_idle_counter - 1'b1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user