Unit4_Peripheral Interfacing and Programming-II
Unit4_Peripheral Interfacing and Programming-II
School of R&A
S.Y. B. Tech (Semester IV)
Microcontroller and Applications
ECE2003B
Unit-IV
Peripheral Interfacing and Programming-II
Serial Port Programming
Asynchronous
Synchronous
Synchronous Communication
MC Devices,(PC,
ADC, DAC etc)
Introduction
There are 2 types of serial communication:
Asynchronous
Synchronous
Simplex Mode
Half-Duplex Mode
Full-Duplex Mode
Modes of Communication
Serial Communication Protocol
D0 D1 D2 D3 D4 D5 D6 D7
1 Asynchronous Byte
The parity bit, unlike the start and stop bits, is an optional parameter, used in serial communications to determine if
the data character being transmitted is correctly received by the remote device.
Asynchronous Serial Communication
Asynchronous serial data communication is widely used for character-oriented
transmissions
Each character is placed in between start and stop bits, this is called framing
The start bit is always be one bit, but the stop bit can be one or two bits
• Another widely used terminology for bps is baud rate, it is modem terminology and is
defined as the number of signal changes per second
• In modems, there are occasions when a single change of signal transfers several bits of
data
• As far as the conductor wire is concerned, the baud rate and bps are the same, and we
use the terms interchangeably
C8051F340
P0.4
P0.5
• UART0 is an asynchronous, full duplex serial port offering modes 1 and 3 of the
• The single SBUF0 location provides access to both transmit and receive registers.
• Writes to SBUF0 always access the Transmit register. Reads of SBUF0 always access
the buffered Receive register; it is not possible to read data from the Transmit register.
UART0 Block Diagram
• The Serial Port Buffer (SBUF) is essentially two buffers & registers :
1. Writing loads data to be transmitted to the buffer -Transmit write-only register
2. Reading accesses received data from the buffer - Receive read-only register
• The Serial Port Control register 0 (SCON0) contains status and control bits
• The control bits set the operating mode for the serial port, and status
bits indicate the end of the character transmission or reception
• The status bits are tested in software (polling) or programmed to
cause an interrupt (TI0 & RI0)
UART Clock Requirements
• UART baud rates are usually much lower than the MCU system
clock, so the system clock cannot be directly used as the UART
clock
• Timers are used to generate the UART baud rate by dividing down
the system clock
Baud Rate Generation
ClockSource
ClockSource
Baud Rate Generation
• The UART0 baud rate is generated by Timer 1 in Mode 2 i.e. 8-bit auto-reload
mode.
• Both TX and RX Timer overflows are divided by two to generate the TX and
RX baud rates. The RX Timer runs when Timer 1 is enabled, and uses the
same reload value (TH1).
𝑆𝑦𝑠𝑡𝑒𝑚𝐶𝑙𝑜𝑐𝑘 1
𝑈𝑎𝑟𝑡𝐵𝑎𝑢𝑑𝑅𝑎𝑡𝑒= ×
( 256 −𝑇𝐻 1 ) 2
• Where SystemClock is the frequency of the clock supplied to Timer 1, and
TH1 is the high byte of Timer 1
8-bit
9-bit
XBR0 = 0x01;
Port pin assignment
Pin assignments to associated functions are done in groups
For example, TX0 and RX0 for UART0 are assigned together
Example: If the UART0EN bit (XBR0.1) is set to logic 1, the TX0 and
RX0 pins will be mapped to the port pins P0.4 and P0.5, respectively.
Since UART0 has the highest priority, its pins will always be mapped to
P0.4 and P0.5 when UART0EN is set to logic 1 and will have
precedence over any other peripheral allocation
Write C instruction
Enable UART through crossbar priority decoder (XBR0)
XBR0 = 0x01;
Enable crossbar priority decoder (XBR1)
XBR1 = 0x40;
Configure 8-bit transmission and reception disabled (SCON0)
SCON0 = 0x00;
UART interconnection diagram & Operational Modes
UART interconnection diagram & Operational Modes
8-Bit UART Transmission
• 8-Bit UART mode uses a total of 10 bits per data byte: one start bit,
eight data bits (LSB first), and one stop bit.
• Data in LSB first format is transmitted from the TX0 pin and received at
the RX0 pin.
• The TI0 Transmit Interrupt Flag (SCON0.1) is set at the end of the
transmission (the beginning of the stop-bit time).
8 Bit UART diagram
8-Bit UART Reception
• Data reception can begin any time after the REN0 Receive Enable bit
(SCON0.4) is set to logic 1.
• After the stop bit is received, the data byte will be loaded into the SBUF0
receive register.
• On receive, the eight data bits are stored in SBUF0 and the stop bit goes
into RB80 (SCON0.2).
• The RI0 Receive Interrupt Flag (SCON0.0) is set at the end of the
reception (the beginning the stop-bit time).
Interfacing Diagram for UART Communication
Interfacing Diagram for CIP 51 as Transmitter
Receiver
Transmitter
UART 0
Hyper
Terminal/
Tera term
UART Transmission Algorithm
while(RI0 ==0);
{
P4=~SBUF0; /*Display received data on P4 where LED (Common cathode) are connected*/
RI0 = 0; /* Clear receive interrupt flag*/
}
}
Serial Peripheral Interface (SPI)
Serial Peripheral Interface (SPI)
Serial peripheral interface (SPI) is one of the most widely used interfaces between
microcontroller and peripheral ICs such as sensors, ADCs, DACs, shift registers, SRAM,
EPROM, and others.
SPI is a synchronous, full duplex Mater Slave based interface.
The SPI interface can be either 3-wire or 4-wire
SPI bus consists of a single master and multiple slave devices. But SPI bus can be used in
different configurations like a single master and a single slave.
Why SPI communication is used?
Embedded system engineers use SPI communication protocol when they want to
transfer fast data between two digital devices and a small number of input-output
pins are available.
In embedded systems due to constraints of less number of GPIO pins, we use serial
peripheral interface to transfer data between two devices by using the minimum
number of GPIO pins.
SPI communication saves the wiring pins and also reduces the cost of hardware.
This protocol can be implemented very easily and quickly with fewer I/O pins.
It has a serial interface and a single master can control multiple slave devices to
transfer data between each other.
The only disadvantage of this is slower communication or data transfer rate.
However, it is used in those applications where real-time data transfer is not
mandatory.
Serial Communication Buses of C8051F340
• The Enhanced Serial Peripheral Interface (SPI0) provides access to a flexible, full-duplex
synchronous serial bus.
• SPI0 can operate as a master or slave device in both 3-wire or 4-wire modes, and supports
multiple masters and slaves on a single SPI bus.
• The slave-select (NSS) signal can be configured as an input to select SPI0 in slave mode, or
to disable Master Mode operation in a multi-master environment, avoiding contention on the
SPI bus when more than one master attempts simultaneous data transfers.
• NSS can also be configured as a chip-select output in master mode, or disabled for 3-wire
operation.
• Additional general purpose port I/O pins can be used to select multiple slave devices in
master mode.
SPI Block Diagram
SPI Signal Descriptions
The four signals used by SPI0 are
A.Multiple-Master Mode
B.3-Wire Single Master and Slave Mode
C.4-Wire Single Master Mode and Slave Mode
SPI0 is accessed and controlled through four special function registers in the system
controller:
I2C
¨ Case Study-
■ ADC
■ Display
• Transducers are the devices that convert energy in one form into another
form.
• Generally the energy is in the form of a signal.
• Transducer is a term alternatively used for the sensor.
Sensors
Mechanical Sensors
■ Pressure sensor – measures pressure
■ Gas flow sensor – measures velocity, direction, and/or flow rate of a gas
■ Thermal Sensors
PRIMARY
■ What is the required level of system accuracy?
SECONDARY
■ Does the system have multiple channels?
Amplification
■ Instrumentation Amplifiers
■ Conversion (Sensor Output to Voltage)
■ I to V, F to V etc.
■ Filtering
■ Attenuation
■ Isolation
■ Linearization
■ Multiplexing
■ Excitation
■ Circuit Protection
Selection of Microcontroller
■ CPU Architecture
■ Harvard or Princeton
■ ALU : 8-bit, 16-bit, 32-bit
■ Clock Speed
■ Instruction Set : RISC or CISC
■ Memory
■ External Memory Interface capability
■ Internal Flash Memory
■ Cache Memory
■ Memory Management Unit
Selection of Microcontroller
■ I/O Ports
■ Serial Communication Interface
■ UART / SPI / I2C / 1-wire
■ Harvard or Princeton
■ On-chip ADC
■ SAR or Sigma Delta
■ Process Monitoring
■ Wireless Sensor Network
■ Internet of Things
■ Test and Measurement
■ Furnace Control
■ Green House/poly house
■ Resource Management
■ Automotive Electronics
■ Robotic Applications
Performance Parameters of Data Acquisition System
■ Resolution
■ Accuracy
■ Number of Channels supported
■ Communication Protocols
■ Communication Speed
■ Portability
■ Flexibility / Scalability
Data Acquisition System - Example : To measure room temperature
Sensor selection: LM35
Temperature range: 5 degree to 50degree
Specifications: Refer datasheet
LM35 Regulator Features:
• Can measure temperature ranging from -55°C to 150°C
• Output voltage is directly proportional (Linear) to temperature (i.e.) there will be a
rise of 10mV (0.01V) for every 1°C rise in temperature.
• ±0.5°C Accuracy
• Drain current is less than 60uA
• Low cost temperature sensor
• Small and hence suitable for remote applications
• Available in TO-92, TO-220, TO-CAN and SOIC package
Calculations
LM35 resolution is 10 mV per 1°C
So, sensor output range: 50mV to 500mV , considering the temperature range to be sensed as 5°C to 50°C
Output of sensor = Input to ADC
So, Input range to ADC 50mV to 500mV
If Vref of ADC is 5V then 500mV has to be amplified to 5V.
So, Amplification factor will be 10
Need to design amplifier with gain of 10
For Example:
Finally display it on LCD by representing this value as char and by separating the digits and adding the unit.
ADC Calculations
If we select C8051F340 and program on chip 10 bit ADC for this application, we need to read the
temperature ______
So read Dout from ADC and convert it in temperature.
ADC Output Register (Dout),
ADC0H:ADC0L= (Vin / Vref )*1024 = 00000010:01100110
Dout =
For Example:
Dout =
Dout =
Dout =
Finally display it on LCD by representing this value as char and by separating the digits and
ADC Calculations
If we select C8051F340 and program on chip 10 bit ADC for this application, we need to read the
temperature 30°C
So read Dout from ADC and convert it in temperature.
ADC Output Register (Dout),
ADC0H:ADC0L= (Vin / Vref )*1024 = 00000010:01100110
For Example:
Finally display it on LCD by representing this value as char and by separating the digits and adding the unit.
ADC Calculations
If we select C8051F340 and program on chip 10 bit ADC for this application, we need to read the
temperature _________
Dout =
For Example:
Dout =
Dout =
Dout =
Finally display it on LCD by representing this value as char and by separating the digits and adding the
ADC Calculations
If we select C8051F340 and program on chip 10 bit ADC for this application, we need to read the
temperature 35°C
So read Dout from ADC and convert it in temperature.
ADC Output Register (Dout),
ADC0H:ADC0L= (Vin / Vref )*1024 = 00000010:11001101
For Example:
Dout = [200+CD]=(2CD)Hex
Dout = (HexToDecimal(Dout)) = ( 717)Dec
Dout = Dout/20.5 = (35)Dec =35°C
Finally display it on LCD by representing this value as char and by separating the digits and adding the unit.
Traffic Light Controller
■ Traffic lights are the devices that are placed on the intersection points and
employed to control the flow of traffic on the road.
■ Several attempts have been made to make traffic light’s sequence dynamic so
that these traffic lights operate according to the current volume of the traffic
(traffic density based)
■ Challenges:
• traffic density
• improving the safety
• improving efficiency of vehicles
• the limitation in altering the transportation infrastructure
• treats a emergency vehicles means priority to ambulance, fire brigade or V.I.P
vehicles.
Case Study - Traffic Light Controller
Paper design for roadways and junction
Display
DAQ
Sensing or
Unit Hardwar
Applicati
e
on
Software
PHASE I-
•Initially Vehicle from A needs to travel to F and from E to B roads.
•So in the first Phase forward green signal in A and E permits vehicles to pass through while East
and west roads are stopped by red signal.
PHASE II-
•Phase II permits the vehicle to pass from G to D and from C to H roads.
•Traffic flow from rest of the two roads North and south was stopped by means of Red signal.
Paper design for roadways and
junction
PHASE III-
•Phase three permits traffic flow in the left directions from A to D and from E to H.
•Traffic flow in East and west are stopped by means of red signal.
PHASE IV-
•Phase four permits traffic flow from C to F and from G to B.
•Traffic flow in the North and south are stopped by means of red signal.
•The cycle repeats again from Phase I to Phase IV and thus the traffic is regulated.
Approaches
Note: Selection of sensors and microcontroller is depend on the design and the
best reference is the datasheet.
Microcontroller Based Traffic Light
Controller System
Hardware Design Consideration
7-
Segment
Sensing Microcontroll Display
Unit er
Power
Supply
• Algorithm
• Programming
• IDE
• Testing