Skip to content

Commit b769dd4

Browse files
author
Mario Ruiz
committed
This commit fixes a bug to run consecutive experiments, and closes issue #3
1 parent c2cc767 commit b769dd4

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,13 @@ If you use the TCP/IP stack or the checksum computation in your project please c
4545
@INPROCEEDINGS{ruiz2019tcp,
4646
title={{Limago: an FPGA-based Open-source 100~GbE TCP/IP Stack}},
4747
author={Ruiz, Mario and Sidler, David and Sutter, Gustavo and Alonso, Gustavo and L{\'o}pez-Buedo, Sergio},
48-
booktitle={Field Programmable Logic and Applications (FPL), 2019 29th International Conference on},
48+
booktitle={{2019 29th International Conference on Field Programmable Logic and Applications (FPL)}},
4949
year={2019},
5050
month={Sep},
51+
pages={286-292},
5152
organization={IEEE},
52-
doi={},
53+
doi={10.1109/FPL.2019.00053},
54+
ISSN={1946-147X},
5355
}
5456
```
5557

RTL/cycle_limiter.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ module cycle_limiter (
8686
);
8787

8888

89-
reg [ 4: 0] cycle_counter = 16'h0;
89+
reg [ 11: 0] cycle_counter = 16'h0;
9090
reg internal_ready= 1'b1;
9191

9292

@@ -97,7 +97,7 @@ module cycle_limiter (
9797
assign M_AXIS_TVALID = S_AXIS_TVALID & /* 1'b1 */internal_ready; // Assert output valid depending on internal ready
9898
assign S_AXIS_TREADY = M_AXIS_TREADY & /* 1'b1 */internal_ready; // Assert output ready depending on internal ready
9999

100-
localparam integer MAX_CYCLE_COUNT = 17;
100+
localparam integer MAX_CYCLE_COUNT = 18;
101101

102102
localparam INITIAL_STATE = 0,
103103
WAITING_PACKET = 1,

0 commit comments

Comments
 (0)