Receiving packets over Ethernet using Python
ฝัง
- เผยแพร่เมื่อ 5 ก.พ. 2025
- Hi, I'm Stacey, and in this video I go over my python code!
Companion to this Ethernet video:
• A quick and easy Ether...
And this FIFO video
• Handling Ethernet FIFO...
Github Code:
github.com/HDL...
Google form to give me your feedback:
forms.gle/ssNw...
Ending music: Faith by David van Niekerk
• Faith (Ocean of Reverb...
I'm on discord on the r/fpga server
Buy me a coffee to support my channel: www.buymeacoff...
Could you recommend some book on how to begin with decoding raw ethernet data?
I don't know if what I said mekes sense. Im making a project for university where I would like to take some error messages that a machine sends though a Ethernet cable, but this project has too little to do with my Bachelor.
Very nice but we need more step by step videos for only on protocol to use it alwys as refrence, I have no clue how you run this with the fpga
what is the idea of using numpy.arange(1000) instead of just using range(1000) ? i've never seen that before, the execution time if 2 times slower and the space complexity is O(N) compared to range which is O(1) because it's just a generator.