Chapter 3: Further Microcontrollers Flashcards
What is the structure of the main program code
Label Command Operand ; comments
Give three examples of input devices
Microswitch
Temperature sensor
Microphone
Give three examples of output components
LED
Motor
Speakes
Describe the architecture of a microcontroller
Input port connected to the CPU from the left
Output port connected to the CPU from the right
Memory connected to the CPU from above
Clock connected to the CPU from the bottom
Name the two types of microcontroller memory
Program memory and Data memory
What do vectors do?
Tell the processor what to do in specific events
What is the reset vector address?
0000h
It contains a goto command followed by a label at the start of the program
What is the interrupt vector address?
0004h
It contains a goto command and a label at the start of the program
What is a subroutine?
They carry out operations that can be used many times.
They are short sections of program in an area of memory outside the main program.
How would you jump to a subroutine?
Using the call command
How would you jump back to the main program from a subroutine
Using the return command
How would you configure PortA
Using the TrisA command
How would you configure portB
Using the TrisB command
How would you configure a bit to be an input in portA?
Put a logic 1 in TrisA
How would you configure a bit to be an output in portA?
Put a logic 0 in TrisA
Describe the interrupt service routine step by step
- Interrupt is detected
- Completes the instruction it is currently executing
- Stores the contents of the program center on the stack
- Loads the interrupt vector address 0004h
- Executes the instruction found here
What is the stack?
An area of program memory used to store return addresses
What are the three bits we use from the INTCON register
Bit 1,4 and 7
What is bit 7 from the INTCON register
The global interrupt bit (GIE)
What does a logic 1 at bit7 GIE cause?
Enables all interrupt sources
What does a logic 0 at bit 7 GIE cause?
Disables all the interrupt sources
What is bit 4 on the INTCON register?
External interrupt enable bit (INT0IE)
What does a logic 1 at bit 4 INT0IE cause?
Enables the interrupt
What does a logic 0 at bit 4 INT0IE cause?
Disables the interrupt
What is bit 1 on the INTCON register?
The external interrupt flag (INT0IF)
What does a logic 1 at bit 1 INT01F cause?
Interrupt occurred
What does a logic 0 at bit 1 INT01F cause?
No interrupt occured
What must be set to respond to an interrupt?
Bit 7 GIE
ISR must clear an interrupt otherwise what will happen?
The interrupt will run completly
Is the GIE cleared automatically if yes, then how?
With a retfie command.
Note: Return command will not do this