SES Flashcards
What is a bus?
A communication highway shared by multiple devices
What are some challenges of using busses?
Maintaining synchronisation between devices
Differentiating between valid bits and an idle signal (when no data is being sent)
Knowing if a device is the intended recipient
Detecting message collisions
Prioritising senders
What is the solution to mismatched signals in busses?
The master controls the clock and sends it to the slave
What are the common communication protocols for microcontrollers?
RS232
I2C
SPI
What are the features of RS232?
Asynchronous
One wire is used for transmitting and another for receiving
Describe how an asynchronous serial bus functions
The sender doesn’t provide a clock to the receiver
Universal asynchronous receiver transmitter (UART) manages the transfer
Both ends must apply the same protocol
What are parts of a protocol?
Number of bits in the message msb or lsb first synchronisation of bits parity bits baud rate
How many wires are there in the I2C protocol?
2
serial data line (SDA) & serial clock line (SCL)
Briefly describe the I2C protocol
All communication is initiated by the master
In order to transmit to the slave the master must send the slave’s unique address
To receive data the master must send a read request alongside the slave’s address
For every 8 data bits an ‘ACK’ bit must be returned
Describe a multi-master I2C system
It must be decided which master has control of the bus
If a master tries to transmit a 1 but the wire has value another master must be sending
The master that lost the resolution stops sending
What does SPI stand for?
Serial Peripheral Interface
Describe the SPI protocol
Shift registers form a circular buffer
Data can be transferred in either direction using 2 pins
MISO - master in slave out
MOSI - master out slave in
Only the master can initiate a transfer
The SS (slave select) pin defines which slave should respond to a transaction so the master needs an SS pin for each peripheral
Alternatively slaves can be chained and all participate in transactions
What are the advantages of SPI?
High speed
No overhead
Full duplex
What are the disadvantages of SPI?
Master doesn’t know is slaves are online
Master doesn’t know if the data is received
At least 4 wires required
Multi-master is awkward
What are the advantages of I2C?
The master knows if data has been received
The master knows if slaves go offline
Only 2 wires required
Multi-master is easy to implement
What are the disadvantages of I2C?
Low speed
High power drain
Half duplex
What are the features of volatile memory?
Requires power to maintain stored data
Contents is lost when it’s switched off
At switch on the memory contains no useful data
What are the features of non-volatile memory?
Retains data when even when not powered
Contents preserved at switch off
At switch on contents is the same as at switch on
What is EEPROM?
Non-volatile memory
Field programmable
Re-programmable
Individual bytes can be erased
What is flash memory?
Non-volatile memory
Blocks (large) can be erased
Cheaper than EEPROM
Faster to program than EEPROM
Describe Von-Neumann architecture
One memory and one address but between a processor and memory
Instructions and data are sent sequentially which limits operation bandwidth
Describe Harvard architecture
Uses separate memories for instructions and data with different busses
Instructions and operands are fetched in parallel
Different program and data bus widths can be used to optimise the memories
What are the requirements of a system?
An informal description is what the customer wants
What is the specification of a system?
Precise description of what the design team should deliver
What methods are there to debounce a switch?
Hardware (resistor capacitor circuit & Schmitt trigger)
Software
How does hardware debouncing work?
Resistor capacitor circuit
- voltage rises when capacitor is charged through a resistor
- when the switch opens the resistors and capacitor smooths the bounce
- when the switch closes the capacitor discharges and R2 ensures the voltage change is slow
Schmitt trigger
- squares up waveform
- changes state only when threshold is reached
How does software debouncing work?
Input signal is sampled across several reads over several milliseconds
The input is only considered high or low if the input has been sampled for a certain time in the new state
Describe complex instruction set computer (CISC)
Instructions can be any length
Instructions can be any format
Instructions can take any number of clock cycles to complete
Difficult for pipelines to handle
Describe reduced instruction set computer (RISC)
Instructions are one word long
Instructions have a similar format
Instructions take one clock cycle to complete
What is the sampling theorem?
A digital signal shouldn’t contain frequencies greater than half the sampling frequency (Nyquist frequency)
Signals containing frequencies above the Nyquist frequency suffer from aliasing which means continuous signals become indistinguishable
The Nyquist rate is the maximum rate for reconstructing a continuous signal
What are PWMs used for?
Giving a pseudo-analog signal from a digital pin
Allows for speed control of motors etc
How does pulse width modulation (PWM) work?
The voltage is pulsed very quickly and if an external device has a response time less than the frequency of the PWM it will only see the average voltage.
The duty cycle is used to change the average voltage by changing the percentage of time the voltage is high
What are the three power saving modes?
Active mode
Idle mode
Sleep mode
What is the difference between idle and sleep mode?
Idle - CPU isn’t clocked but peripherals are
Sleep - neither the CPU or peripherals are clocked
What is the difference between a microcontroller and a microprocessor?
Microprocessor: Contains the CPU, processes instructions and connects to external devices for other functions. One part of a system that forms a computer.
High speed processing of large data sets at the cost of a high current drain.
Microcontroller: A chip that contains all systems needed to form a computer –> a computer on a single chip.
Low speed processing of small data sets, good current control/battery lifetime. Inbuilt peripherals.
What is the equation for the guarantee bound of schedulability?
n*(2^1/n - 1)