COMP9032 Experiment 3 solution

$25.00

Original Work ?
Category: You will Instantly receive a download link for .ZIP solution file upon Payment

Description

5/5 - (4 votes)

1. Objectives
In this lab, you will learn AVR programming on
 Parallel input/output,
 Interrupt, and
 Input from keyboard
2. Preparation
Before coming to the laboratory, it is recommended that you:
 Download and install the Arduino software (avrdude-5.11-Patch7610-win32.zip
available on the course website)
o arduino-1.0.6-windows.exe
 Read “Introduction to Lab Board” and understand how to use the lab board.
 Write your programs at home in order to finish the experiment on time.
3. Tasks
Task 1 (7 marks, for week 6, due in week 7)
Implement a LED control system to repeatedly display a sequence of three patterns. The
display will be halted when the user presses a button. To ensure visibility, insert some
delay (for example, 1s) between two adjacent patterns. The clock frequency used on the
lab board is 16MHz.
Assemble your program using AVR Studio, and run it on the AVR Microcontroller Board.
Demonstrate your working program to the lab assessor.
2
Task 2 (6 marks, for week 7, due in week 8)
Based your code for Task 1, modify it by using an external interrupt to start and stop
LEDs’ display.
Assemble your program using AVR Studio, and run it on the AVR Microcontroller Board.
Demonstrate your working program to the lab assessor.
Task 3 (9 marks, for week 8, due in week 9)
Write an assembly program that performs multiplication: a = b x c, where a, b, c are all
unsigned 1-byte integers. The program takes b and c from the keypad and displays the
result on the LED bar. When there is an overflow in the calculation, the LED bar flashes
3 times.
Note: you can use the “*” key for “x” and the “#” key for “=”. For example, to get 12×9,
your input key sequence is 12*9#.
Assemble your program using AVR Studio, and run it on the AVR Microcontroller Board.
Demonstrate your working program to the lab assessor.
Note: All your programs should be well commented. Up to 2 marks will be deducted for
each program without proper and sufficient comments.