Presentation is loading. Please wait.

Presentation is loading. Please wait.

Advanced Digital Circuits ECET 146 Week 3 Professor Iskandar Hack ET 221B, 481-5733

Similar presentations


Presentation on theme: "Advanced Digital Circuits ECET 146 Week 3 Professor Iskandar Hack ET 221B, 481-5733"— Presentation transcript:

1 Advanced Digital Circuits ECET 146 Week 3 Professor Iskandar Hack ET 221B, 481-5733 hack@ipfw.edu

2 This Week’s Goals Designing a Combinational Circuit from Truth Table Introduction to the Programming Hardware Verifying a design in Hardware

3 Designing from a Truth Table Write a Sum of Product Equation straight from the truth table Draw the schematic from the Equation No Need to minimize equation (the software will find the minimum solution for the Altera architecture)

4 Writing the Equation Look at the Truth Table and everywhere the output is a one then you will generate a term in the Sum of Products The term generated will depend on the values of ABCD in the table for that term. If the value for an input is a zero then the term would contain an T-not If the value for an input is an one then the term would contain T

5 Table Equivalent Terms The Term for each of the entries is shown here ABCDTerm 0000 0001 0010 0011 0100 0101 0110 0111 1000 1001 1010 1011 1100 1101 1110 1111

6 Example 1 Write the Equation for the following table ABCDX 00000 00010 00101 00111 01001 01010 01100 01111 10001 10010 10100 10111 11001 11010 11101 11110

7 Comments regarding Example 1 There were 8 – ones in the table, thus there would be 8 terms in the equation Each one will create exactly one term, that can be easily written by looking at the table and writing the term by looking at the values Example if you look at the third line of the table A = 0, B=0, C=1, and D=0 and the output is 1. That would generate the term

8 Solution to Example 1 ABCDX 00000 00010 00101 00111 01001 01010 01100 01111 10001 10010 10100 10111 11001 11010 11101 11110

9 Drawing Schematic Open Altera Quartus II Software File->New->Schematic File Insert Inputs and inverters to create inputs for AND gates Draw AND gates, selecting appropriate inputs for each OR the output of the eight AND gates Insert Output

10 Insert Inputs and Inverters Draw the following circuit using INPUT and Inverters and draw the wires out of each inverter as shown

11 Name Pins and Nets As in previous labs name the pins A-D Click on each wire from the inputs and name them A-D Click on each wire from the inputs and name them Anot- Dnot

12 Add AND4 Gates Insert 8 – AND4 gates (remember one AND gate per term)

13 Connect Inputs to AND Gates Connect the four inputs to the AND gates according to the equation. This is done by drawing a small wire from each input and naming it as before. Name them according to the equations from the previous slide

14 The AND gates Connected

15 Add OR8 and connect the Product Terms

16 Insert Output (and name it)

17 Completed Schematic

18 Save File Click this to Create project

19 Creating the Project -1 First two screens take default and hit next

20 Device Number Part Number (EP3C16F484C6N)

21 Creating the Project – II (Select Device) Cyclone II Family Need a specific device Hit OK when done EP2C20F484C7 is the chip on the board

22 Compiling the Project Hit the hot key on the top of the screen to start compiling your project.

23 The Compiler If you did everything right thus far you should see something like this:

24 Compiler Reports The compiler creates a number of reports, which at this point would mean nothing to you, but you may want to explore them. I/O pin info Boolean EQ

25 Comments regarding errors It is very possible that you’ll get errors on this drawing. If so look for two connections on a wire to one of the AND gate inputs. This is the most common error. This often happens on the last AND gate if the wires brought down end at the same point you draw the wire across. Just delete the wire and redraw it.

26 Assigning Pins - I Open the Pin Planner to Assign the pins

27 Assigning Pins II Look at the data sheet for the board and determine what your pin numbers need to be.

28 Assigning Pins III Use four of the switches for the inputs Use one of the LEDs for the output

29 Assigning the Pins IV

30 Tristate Unused Pins Device and Pin Options

31 Tristate Unused Pins II

32 Recompile after Assigning Pins and tristating unused pins

33 Check New Pin Assignments Open the resource files to look at the pin assignment after recompiling. Click to look at input pinsInput pin assignments Output pins

34 NOTE: The following slides were copied from Lecture two and the waveforms DO NOT match this example. They are included for instructional purposes only.

35 Drawing Waveforms for Simulation We now need to create a new file to hold our simulation input waveforms. This done by hitting new and selecting Other and vector waveform file (vwf)

36 Entering Nodes You will need to double click in the node area of the display – this will bring up the following dialog box Select Node Finder

37 Entering Nodes II (1) Start by selecting Pins: all (2) Then hit List (3) Move all pins to the right by hitting >> (4) Hit OK

38 Check if all nodes are selected Verify in the waveform editor that all nodes are shown Inputs Output

39 Change Grid and End Time Select Edit, Grid time, and change it to 50 nS Select Edit, End time and change it to 1.6 uS

40 Grouping Inputs Select all the inputs, right click, hit ‘Group’ and use inputs[3..0] for the name of the inputs, Hex as radix, and uncheck grey count

41 Display after Grouping + will expand group to show the individual pins - will hide individual pins

42 Using Count Function Select the Group, and then hit the count button on the left side of the screen. Take the defaults (start at 0, incr by 1, End value F)

43 Display after Count You should see the following after hitting OK

44 Save Simulation File Up to now you should have seen that the output is neither high or low. That is because it has not been simulated yet. In order to simulate you must first save the file as example1.vwf Leave checked

45 Simulate This is the easy part – Hit the simulate button on the top of the screen. Simulate

46 Verify Simulation You should have a value for the output for each input condition. Manually determine (using techniques from ECET 111) what the output should be for each condition and verify that the output matches that.

47 Simulation Display

48 Connect the Altera Board to the PC Check out an Altera Board from the Lab Tech office

49 Connect Board to PC I When checking out board also check out DC wall pack. Ensure that the wall pack is of the correct polarity (+ is the center, - is the outside) and is between 9 and 12 volts. Also get a Male -> Female DB25 cable to connect between the computer and the PC

50 Connect to PC II Notice the location of the connectors used, the other DB25 connector is used for experiments. DB25 Cable to PC DC Power connector

51 Open the Programming Module Select the Programmer Hot Button

52 Select Programming Hardware Once the programmer is opened – hit hardware setup Then select Add Hardware Selected USB Blaster

53 Select Programming Options Select Program/Configure and Verify

54 Program the Part Hit the start button You should see the progress bar move during programming

55 Verify the Design Switch the inputs thru the 16 possible combinations (0000 to 1111) to verify that the design matches the truth table

56 Summary This week we covered how to go from any truth table to a schematic very quickly in the Altera software We also went thru the procedure to specify a device, lock our input/output pins to particular pins and program the device We also we over how to verify a combinational logic design using the Altera hardware

57 Lab Two Design a circuit and verify it using the techniques covered in this week’s lecture that will have the following truth table. Turn in your printouts from the schematic editor and simulator. Have myself or the TA initial the schematic to verify that your circuit worked ABCDX 00001 00011 00100 00110 01001 01010 01100 01110 10000 10010 10100 10110 11000 11010 11101 11111


Download ppt "Advanced Digital Circuits ECET 146 Week 3 Professor Iskandar Hack ET 221B, 481-5733"

Similar presentations


Ads by Google