[SOLVED] Verilog Lab 10-Part1: Morse Decoder

25.00 $

Category:

Description

5/5 - (3 votes)

Lab 10
Part1: Morse Decoder

In this lab you will design a Morse Decoder that takes an input b and generates the following signals:

• dot:whentheinputbisassertedforoneunit
• dash:whentheinputbisassertedfor3units
• lg: letter gap, indicating the end of letter
• wg:wordgap,indicatingtheendofaword(ofmultipleletters)

You are free to use whatever components in your design, just make sure to name your top file morse_decoder.v (we will use this file in future lab projects)

Hints:

• You might want to use a combination of timer and counter to keep track of how many units of time have passed

• Use50msasoneunitoftime(i.e.adotisabout50msandadashisabout150ms) There is no FPGA implementation for this part

1

Part2: Morse Decoder Application

Verify the functionality of your decoder by implementing the following circuit.

FPGA Implementation:

  • Connect input b to one of the push buttons
  • Display the content of the shift register on the first 5 seven-segment digits.
  • Display the content of the counter on the 8th seven-segment digit.
  • It is important to keep track of the number of segments in a Morse code, because thenumber range between 2 and 5.
  • The D, load inputs reset the value of the counter to 0 after shifting 5 dits/dashes.Submission check list:

    [ ] All Verilog code you generated or modified
    [ ] All testbenches written
    [ ] Embed all screenshot of your testbench output in your README.md
    [ ] Embed all block diagram or state diagrams generated in your README.md
    [ ] Short videos demonstrating each of the parts you implemented on the FPGA

2