Hi,
is it possible to simple loopback the Rx signals to Tx?
I want to send data via Ostinato to the FPGA. From there I want to connect Rx and Tx and then send back the data to PC. Wireshark should show me the packages.
At the moment it works fine for the first package.
But all following packages are not visible in Wireshark. To send and receive the next package I have to restart the core.
At the moment I have wired the signals as shown:
//user interface
.Rx_mac_ra(), //out
.Rx_mac_rd(1), //in
.Rx_mac_data(rx_mac_data),//out
.Rx_mac_BE(BE), //out
.Rx_mac_pa(rx_mac_pa), //out
.Rx_mac_sop(rx_mac_sop), //out
.Rx_mac_eop(rx_mac_eop), //out
.Tx_mac_wa(tx_mac_wa_int), //out
.Tx_mac_wr(rx_mac_pa), //in
.Tx_mac_data(rx_mac_data), //in
.Tx_mac_BE(BE),//big endian //in
.Tx_mac_sop(rx_mac_sop), //in
.Tx_mac_eop(rx_mac_eop), //in
Thank you