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...

ความคิดเห็น • 3

  • @pepo4990
    @pepo4990 ปีที่แล้ว +2

    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.

  • @TahaAlars
    @TahaAlars ปีที่แล้ว

    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

  • @MonsieurSw4g
    @MonsieurSw4g 4 หลายเดือนก่อน

    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.