Difference between revisions of "CSC270 Homework 8 2016"

From dftwiki3
Jump to: navigation, search
(Created page with "--~~~~ ---- <bluebox> This homework can be done in pairs. It is due on 4/7/16 at 23:55 p.m. </bluebox> <br /> <br /> <br /> =Problem #1= <br /> Design an I/O port that contr...")
 
(Question 2: driver)
 
(3 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
----
 
----
 
<bluebox>
 
<bluebox>
This homework can be done in pairs.  It is due on 4/7/16 at 23:55 p.m.
+
This homework can be done in pairs.  It is due on Thursday 4/7/16 at 23:55 p.m.  Submit a pdf with your answer on Moodle.
 
</bluebox>
 
</bluebox>
 
<br />
 
<br />
Line 19: Line 19:
 
<br />
 
<br />
 
Show the set of instructions you can use to  
 
Show the set of instructions you can use to  
* Turn the green LED ON
+
* Turn the green LED ON (and leave the others in the state they were in)
* Turn the green LED OFF
+
* Turn the green LED OFF (and leave the others in the state they were in)
* Turn the yellow LED ON
+
* Turn the yellow LED ON (and leave the others in the state they were in)
* Turn the yellow LED OFF
+
* Turn the yellow LED OFF (and leave the others in the state they were in)
* Turn the red LED ON
+
* Turn the red LED ON (and leave the others in the state they were in)
* Turn the red LED OFF
+
* Turn the red LED OFF (and leave the others in the state they were in)
 
<br />
 
<br />
 +
 
==Question 3: software loop==
 
==Question 3: software loop==
 
<br />
 
<br />
 
Show the assembly language program that implements the 3 seconds green, 1 second yellow, and 3 seconds red cycle.
 
Show the assembly language program that implements the 3 seconds green, 1 second yellow, and 3 seconds red cycle.
 
<br />
 
<br />
 +
=Problem #2=
 +
<br />
 +
We want to use the 6811 kit to generate a series of pulses (1-0-1-0-1-0-1-...) as fast as possible.  We want these 1-0-1-0 transitions to activate some device, and we are interested in the fastest transmission rate possible.
 +
<br />
 +
We want to send 100 bits: 50 0s and 50 1s: 010101010101010101...01
 +
<br />
 +
Propose a hardware and software design that will provide the fastest possible transmission of these 100 bits. 
 +
<br />
 +
Your grade for this problem will be based on 1) the feasibility of your design, and 2) the transmission speed it allows.
 +
<br />
 +
<br />
 +
<br />
 +
<br />
 +
<br />
 +
[[Category:CSC270]][[Category:6800]][[Category:Homework]]

Latest revision as of 08:40, 6 April 2016

--D. Thiebaut (talk) 14:00, 31 March 2016 (EDT)


This homework can be done in pairs. It is due on Thursday 4/7/16 at 23:55 p.m. Submit a pdf with your answer on Moodle.




Problem #1


Design an I/O port that controls 3 LEDs. One is green, one is yellow, and one is red. They are used to control the traffic at some intersection. Typically, green is ON for 3 seconds, then it goes OFF and yellow turns ON and stays ON for 1 second. When yellow turns OFF, red turns ON for 3 seconds, and the cycle of green/yellow/red activation repeats.

Question 1: logic design


Provide a logic design that would work with the current 6811 kit (actually, you could wire it up to verify that it works). Show the 6800, a decoder, and the hardware that activates the 3 LEDs.

Question 2: driver


Show the set of instructions you can use to

  • Turn the green LED ON (and leave the others in the state they were in)
  • Turn the green LED OFF (and leave the others in the state they were in)
  • Turn the yellow LED ON (and leave the others in the state they were in)
  • Turn the yellow LED OFF (and leave the others in the state they were in)
  • Turn the red LED ON (and leave the others in the state they were in)
  • Turn the red LED OFF (and leave the others in the state they were in)


Question 3: software loop


Show the assembly language program that implements the 3 seconds green, 1 second yellow, and 3 seconds red cycle.

Problem #2


We want to use the 6811 kit to generate a series of pulses (1-0-1-0-1-0-1-...) as fast as possible. We want these 1-0-1-0 transitions to activate some device, and we are interested in the fastest transmission rate possible.
We want to send 100 bits: 50 0s and 50 1s: 010101010101010101...01
Propose a hardware and software design that will provide the fastest possible transmission of these 100 bits.
Your grade for this problem will be based on 1) the feasibility of your design, and 2) the transmission speed it allows.