Merge pull request #96 from lschuermann/dev/compliant-xgmii-fixup
phy/xgmii: remove vcd dump in test, fix comment
This commit is contained in:
commit
7acb2a8c1c
|
@ -248,7 +248,7 @@ class LiteEthPHYXGMIITX(Module):
|
||||||
# Branch A: we've transmitted at least the full 12 bytes
|
# Branch A: we've transmitted at least the full 12 bytes
|
||||||
# IFG. This means that we can unconditionally start transmission
|
# IFG. This means that we can unconditionally start transmission
|
||||||
# on the first octet. In addition to that, we may have inserted
|
# on the first octet. In addition to that, we may have inserted
|
||||||
# some extra XGMII, thus we can reduce the deficit.
|
# some extra IFG, thus we can reduce the deficit.
|
||||||
*unshifted_idle_transmit,
|
*unshifted_idle_transmit,
|
||||||
If(current_dic - last_packet_rem < 0,
|
If(current_dic - last_packet_rem < 0,
|
||||||
NextValue(current_dic, 0),
|
NextValue(current_dic, 0),
|
||||||
|
|
|
@ -546,7 +546,6 @@ class TestXGMIIPHY(unittest.TestCase):
|
||||||
and not xgmii_tx_collector.collecting,
|
and not xgmii_tx_collector.collecting,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
vcd_name="xgmii_fuuuuuck.vcd",
|
|
||||||
)
|
)
|
||||||
|
|
||||||
self.assertTrue(
|
self.assertTrue(
|
||||||
|
|
Loading…
Reference in New Issue