In this lab you will learn what a seven segment display is and how it works. You will create a digital circuit that drives a seven segment display with hexadecimal characters.
The NEXYS4 board contains an 8-digit, seven segment display as shown below. This display can be used to display any information you desire, such as a counter value, register values, a timer, etc. You will create a circuit to drive one digit of this display. Later in the semester you will create a circuit to individually drive each of the eight digits at once.
Before designing a seven-segment controller circuit, it is necessary to understand how the seven-segment display operates. As the name implies, a seven-segment display has seven discrete segments that can each be individually turned on to make a variety of different characters. Each of the seven segments are labeled with a letter as shown in the image below:
For example, the character “0” can be displayed on the seven-segment display by turning on segments a, b, c, d, e, and f. Note that segment g is turned off. Other characters can be displayed by turning on and off different combinations of these segments.
Each segment of the seven-segment display is driven by an individual LED (light-emitting diode). The schematic diagram below shows these LEDs used by a seven-segment display. In addition to the seven segments for displaying a character, many displays include an eighth LED for the digit point (the round circle to the bottom right of the seven-segments). This is commonly abbreviated to DP as seen below.
In this configuration, all eight LEDs share a common anode signal which is used to turn on the display. Each segment has its own cathode signal labeled CX where X represents the segment letter. For example, signal CA corresponds to the cathode signal for segment a.
Two conditions are needed to turn on a segment.
To display the character 0, the anode signal will have a low voltage and the cathode signals CA, CB, CC, CD, CE, and CF will have a low voltage. The cathode signal CG will have a high voltage.
Although any arbitrary combination of segments can be turned on, digital circuits are often created to display the 16 different characters representing any 4-bit value in hexadecimal. These characters are: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, and F. Each of these is shown in the image below.
Before you can create a circuit to display these hexadecimal characters, you need to determine the value each cathode signal needs for each character.
Fill out the table below so that the segment outputs on each row will display the number given by that row's hexadecimal character. Also included in this table is the binary representation of each hexadecimal character in the D columns. For an example, the output for an input of 0 is already in the table.
Hex | Input | Outputs | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Character | Binary | Segments | |||||||||
D3 | D2 | D1 | D0 | A | B | C | D | E | F | G | |
0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
1 | 0 | 0 | 0 | 1 | |||||||
2 | 0 | 0 | 1 | 0 | |||||||
3 | 0 | 0 | 1 | 1 | |||||||
4 | 0 | 1 | 0 | 0 | |||||||
5 | 0 | 1 | 0 | 1 | |||||||
6 | 0 | 1 | 1 | 0 | |||||||
7 | 0 | 1 | 1 | 1 | |||||||
8 | 1 | 0 | 0 | 0 | |||||||
9 | 1 | 0 | 0 | 1 | |||||||
A | 1 | 0 | 1 | 0 | |||||||
b | 1 | 0 | 1 | 1 | |||||||
C | 1 | 1 | 0 | 0 | |||||||
d | 1 | 1 | 0 | 1 | |||||||
E | 1 | 1 | 1 | 0 | |||||||
F | 1 | 1 | 1 | 1 |
For this laboratory assignment you will need to create a digital logic circuit to implement the logic for decoding each of these segments.
HERE
You will need to create digital logic circuits to
After filling out the table, Complete the following requirements.
Provide a minimized logic equation for segment A (CA).
Provide a minimized logic equation for segment B (CB).
Provide a minimized logic equation for segment C (CC).
Provide a minimized logic equation for segment D (CD).
Provide a minimized logic equation for segment E (CE).
Provide a minimized logic equation for segment F (CF).
Provide a minimized logic equation for segment G (CG).
If you're confused about how to make an equation for a segment, remember that a whole column represents an individual output. Simply pick the column for the segment as labeled in the table.
The seven-segment display on the NEXYS 4 board has eight unique digits. Each digit of the eight digit display has its own anode input. In order to turn on any of the segments of a digit, its corresponding anode signal must be asserted to provide current for individual LED segments of the digit. The schematic of this eight-digit, seven-segment display is shown below.
This eight-digit, seven-segment display configuration is known as a common cathode arrangement because the cathode signals are shared among all eight digits. If more than one anode signal is asserted, the corresponding digits will have the same segments turn on because they are connected to the same cathode signals. While this significantly reduces the pin count, it makes it difficult to display different values simultaneously. (Different values can be displayed by time-multiplexing the cathode signals. You will create a time-multiplexing seven segment display controller in a future laboratory assignment.)
The seven-segment display in this schematic uses a dedicated transistor to drive each of the anode signals. (A transistor is used because it can provide more current than the FPGA input pin.) Eight anode signals (A0-A7) are used for each of the eight digits. The left-most digit is controlled by AN7, the second to the left digit is controlled by AN6, and so on down to the right-most digit which is controlled by AN0. Because of the way the transistor is used to drive the anode input to the seven-segment display, a logic value of 0 must be passed to the anode to turn on a digit.
For example, to turn on only the right two digits of the eight digit display, AN1 and AN0 must have a logic value of 0 and the other anode signals must have a logic value of 1.
In the following example, two of the digits are turned on by setting their corresponding anode to zero. All of the other digits are off since their anode signals are set to one. In addition, the digit 3 is displayed based on which cathode signals have a logic 1. The digit point is also on since the cathode signal, DP, associated with the digit point is set to 0.
A7 | A6 | A5 | A4 | A3 | A2 | A1 | A0 |
---|---|---|---|---|---|---|---|
1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 |
CG | CF | CE | CD | CC | CB | CA | DP |
0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 |
What would happen if all eight anode control signals were set to a logic value of 0 simultaneously in the example above?
Determine what will be shown on the display with the following signal values. Fill in the segments in the diagram below that will be turned on by this set of input signals. (You might use Paint or another program. It doesn't have to look great, it just has to be clear which character it is and which digits are lit.)
A7 | A6 | A5 | A4 | A3 | A2 | A1 | A0 |
---|---|---|---|---|---|---|---|
0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 |
CG | CF | CE | CD | CC | CB | CA | DP |
1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 |
In this exercise you will create a seven segment decoder in a SystemVerilog module. Begin by creating a new Vivado project like you did in the previous lab (you will create a new project for each laboratory assignment). After creating this project, create a new SystemVerilog file with the following module name and ports:
Module Name: seven_segment | |||
---|---|---|---|
Port Name | Direction | Width | Function |
data | Input | 4 | Data input to display on the seven segment display |
segment | Output | 7 | Cathode signals for seven segment display (excluding digit point). segment[0] corresponds to CA and segment[6] corresponds to CG |
Begin your SystemVerilog module by creating the logic for cathodes CA (segment[0]) and CB (segment[1]) using the minimized logic equations you created in the preliminary section. For these two functions, use only the standard logic gates and, not, or, etc. The input for both logic functions is the data[3:0] input bus.
Once you have completed the logic for your seven segment decoder, proceed with the simulation of your module using a TCL script. Complete the following steps.
Include your TCL simulation file in your report.
A testbench circuit has been created for you in this lab to test your seven segment decoder. Test your seven segment decoder circuit using the testbench by the following steps.
Copy and paste the testbench console output into your report (the console should report no errors).
Paste the SystemVerilog code for your seven_segment module in your laboratory report.
Begin this exercise by creating a second SystemVerilog file with the following module name and ports:
Module Name: seven_segment_top | |||
---|---|---|---|
Port Name | Direction | Width | Function |
sw | Input | 4 | Input from four switches to drive seven segment decoder. |
btnc | Input | 1 | Center button |
segment | Output | 8 | Cathode signals for seven segment display (including digit point). segment[0] corresponds to CA and segment[6] corresponds to CG, and segment[7] corresponds to DP. |
anode | Output | 8 | Anode signals for each of the eight digits. |
The figure below demonstrates the structure of this top-level design. You will also create some additional logic in this top-level design.
Begin your top-level by instancing the seven segment display module you created in the previous exercise.
Connect the four-bit switch input ports from your top-level design to the data inputs of your seven segment display. Connect the 7 segment bits (segment[6:0]) from your seven segment display outputs to bits [6:0] of the top-level segment output.
Your seven segment decoder module drives seven of the eight cathode segment signals (segment[6:0]). The eighth segment signal (segment[7]) is used for the “digit point”. You need to create logic to turn on the digit point (DP or segment[7]). For this top-level design, we want to turn on the digit point when btnc is pressed. Create a logic circuit using structural SystemVerilog in your top-level module for the digit point based on the value of btnc. Remember that the cathode segment signals are turned on when the logic value of 0 is given.
The last component of your top-level design is the logic to drive the anode signals. For this top-level design, you will need to create logic that turns on the right most digit (associated with anode[0]) and turn off all of the other seven digits (anode[7:1]). To turn on the right most digit, we simply need to assign the 'anode' output with a constant value. Add a dataflow assignment statement in your top-level SystemVerilog file to assign the anode signals such that only the right most digit is turned on. The following SystemVerilog statement can be added to set the anode signals (you will need to replace the “X” values with actual '1's or '0'):
assign anode = 8'bXXXXXXXX;
After completing your top-level design, simulate your top-level design to make sure your digit point (DP) logic and your anode logic is correct. Also, simulate all possible data inputs to verify your top-level circuit is working properly.
Include a screen shot of the waveforms of a simulation of your top-level design
Include a copy of your top-level SystemVerilog module in your laboratory report
Begin this process by creating and adding an XDC constraints file. Your XDC file should have entries for the four switches, the btnc button, eight cathode output signals and eight anode output signals. The easiest way to create this file is to start with the master XDC file and modify it with the signals you will use by uncommenting the pins you use and insert top-level signal names.
Once you have the XDC file added to your project, synthesize your project.
Provide a summary of your synthesis warnings.
Implement your module.
Indicate the number of LUTs and I/O pins your design uses. You can find this in the the Utilization box within the “Project Summary” window (use the “Post-Implementation” tab).
Generate a bitfile for your design, download your circuit, and verify that it works as expected.
Here are some ideas for personal exploration in this laboratory:
Describe your personal exploration activities
Demonstrate the following to a TA to pass off your lab:
How many hours did you work on the lab?
Provide any suggestions for improving this lab in the future.