Loosely inspired by how much people seemed to enjoy a similar question I asked on Games about unappreciated titles. But answers don’t have to be media related (they still can be though).

  • funnystuff97@lemmy.world
    link
    fedilink
    arrow-up
    13
    ·
    9 months ago

    The “print hello world” equivalent of FPGAs is to make an LED blink. That teaches you how to use an FPGA’s clock, divide it down to a frequency the human eye can actually see, and route it out to a pin (the LED on your board). Then you can experiment with your catalog of digital circuit building blocks using buttons, switches, LEDs, and 7-segment displays. You can make your own custom logic of ANDs and ORs to display different logic.

    Some super beginner projects I found fun back in college:

    • Create a counter, and increment the counter every time you press a button. That’s the easy part. Then display the value on a 4-digit 7-segment display. It’s harder than it sounds, because you have to learn about time multiplexing! (At any one instance in time, only one digit is on, and the other three are off. Human persistence of vision makes us believe all 4 digits are being shown at once, but in reality, the system cycles through each digit, flashing one on for a few milliseconds, then turning it off and moving to the next one. Implementing this takes effort!)

    • Learning Finite State Machines and then implementing your own is fun. I made a “vending machine” state machine once, where different buttons corresponded to inserting different coins, and then once a certain amount of money was put in, you could select which beverage you wanted, the machine would “vend” (an LED would flash), and then change is administered. Another fun and classic FSM is the pattern detector, where you input a series of 1s and 0s, and the machine will blink an LED if it detects a certain pattern in the sequence, say, 11010. This one is a lot harder than it sounds, because it requires a lot of thinking of the different edge cases! If I input 111, for example, the system shouldn’t be like, “well he inputted 111 but I was expecting 110…, so I’m gonna start over”, because I could input “111111010” and the pattern is there, just at the end. This one teaches you how to draw state diagrams and Mealy/Moore machines!

    • Then you can get into using peripherals, like RGB LEDs, gyroscopes, graphics on a screen, ethernet connections, etc. You just need to learn the protocols and follow the correct logic in your own logic. It’s a lot of copy and pasting at first, but if you put in the effort to understand what you’re copying, you’ll pick up on it fast.

    Really, the world’s your oyster, all you need is a development kit and a program that will synthesize/place&route your Verilog or VHDL.

    And if you’d like to start at the very, very beginning, HDLBits is an amazing resource to learn Verilog: https://hdlbits.01xz.net/wiki/Main_Page

    Let me know if I can ever be of any assistance :)