mirror of
https://github.com/openhwgroup/cvw.git
synced 2025-04-22 21:08:08 -04:00
This is great. The FPGA is able to send ethernet frames consisting of the RVVI data to the host computer.
wireshark is able to capture the frames and they match the expected data!
This commit is contained in:
parent
6a4c8667df
commit
1df3e5239a
1 changed files with 2 additions and 1 deletions
|
@ -71,7 +71,8 @@ module packetizer import cvw::*; #(parameter cvw_t P,
|
|||
case(CurrState)
|
||||
STATE_RDY: if (TransReady & valid) NextState = STATE_TRANS;
|
||||
else if(~TransReady & valid) NextState = STATE_WAIT;
|
||||
STATE_WAIT: if(TransReady) NextState = STATE_TRANS;
|
||||
else NextState = STATE_RDY;
|
||||
STATE_WAIT: if(TransReady) NextState = STATE_TRANS;
|
||||
else NextState = STATE_WAIT;
|
||||
STATE_TRANS: if(BurstDone) NextState = STATE_RDY;
|
||||
else NextState = STATE_TRANS;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue