Line 83: Line 83:
 
=Downloads=
 
=Downloads=
 
Download the complete project folder from the below link:<br>
 
Download the complete project folder from the below link:<br>
[https://github.com/ExploreEmbedded/Pic16f877a_ExploreUltraPicDevKit/archive/master.zip Hardware design Files and Code Library]
+
[https://github.com/ExploreEmbedded/8051_DevelopmentBoard Hardware design Files and Code Library]
  
  
 
Have an opinion, suggestion , question or feedback about the article let it out here!
 
Have an opinion, suggestion , question or feedback about the article let it out here!
 
{{DISQUS}}
 
{{DISQUS}}

Latest revision as of 17:38, 1 September 2016

In this tutorial, we are going to discuss the interfacing of external ADC0808/9 with 8051.
We will be reading the ADC values from channel Zero and transmitted on UART at 9600 baudrate. ADC.gif


ADC-0808/9

8051 does not have the inbuilt ADC and we will be using the external 8-bit ADC ie. ADC0808/ADC0809. ADC0809 is an 8-bit Successive Approximation ADC which is multiplexed among 8 input pins.
The A/D module has high and low-voltage reference input that can be set using the pins Vref+ and Vref- as shown in the below image. With 5v as the Vref+ and 0v as Vref- the resolution of ADC0809 can be determined as below: $$resolution of ADC = ((Vref+) - (Vref-))/(2^{8}-1) = 5/255 =0.0196 = 19.6mv$$ ADC0809.png

ADC Pins

Lets see the pins of the ADC0809

  • Addres Lines(A,B,C): As mentioned earlier, ADC0809 has 8-muliplexed ADC channels. A particular input channel is selected by using these address bits as shown below.
C B A Selected ADC channel
0 0 0 INO
0 0 1 IN1
0 1 0 IN2
0 1 1 IN3
1 0 0 IN4
1 0 1 IN5
1 1 0 IN6
1 1 1 IN7


  • Address Latch Enable (ALE): A low-to-high signal at this pin will latch the above-selected address and selected the respective channel for ADC conversion.
  • START Conversion (SOC): The A/D converter’s successive approximation register (SAR) is reset on the positive edge of the start conversion (SC) pulse. Thus we need to generate a LOW-HIGH-LOW pulse for starting the ADC conversion.
  • End of Conversion (EOC): Once the conversion is over, this pin is pulled HIGH by ADC0809. This pin needs to be monitored for the conversion to complete and then read the data.
  • Output Enable(OE): ADC0809 does the adc conversion and holds the data in the internal registers. A HIGH signal on this pin will bring the data on the output lines.

Adc0809 TimingDiagram.png

Pin Connections

You can connect the ADC0809 to any of the PORT pins available on your boards and update this section accordingly.

/* ADC DataBus is connected to P2 and Control lines are connected to P1*/
#define adc_DATABUS P2
sbit adc_A = P1^0;
sbit adc_B = P1^1;
sbit adc_C = P1^2;
sbit adc_ALE = P1^3;
sbit adc_START = P1^4;
sbit adc_EOC = P1^5;
sbit adc_OE = P1^6;

Steps for ADC Conversion

  1. Select the required ADC channel using A,B,C pins.
  2. Send a HIGH pulse on ALE for latching the above selected channel.
  3. Send a HIGH pulse on Start pin to reset the SAR(Successive Approximation Register).
  4. Pull the ALE line low as the address is lateched and futher changes on A,B,C should not change the channel.
  5. Pull Start line LOW to start the conversion.
  6. Wait for the EOC line go HIGH.
  7. Pull the OE line HIGH to bring the conversion data on DataBus.
  8. Read the ADC data and pull OE line back to LOW.
  9. Use the ADC data for further processing

uint8_t ADC_Read(uint8_t v_adcChannel_u8)
{
uint8_t adc_result;
adc_A=((v_adcChannel_u8>>0) & 0x01); //Select the channel
adc_B=((v_adcChannel_u8>>1) & 0x01); //for which the conversion needs to be done
adc_C=((v_adcChannel_u8>>2) & 0x01);
adc_ALE=1; // Latch the address by making the ALE high.
delay_us(50);
adc_Start=1; //Start the conversion after latching the channel address
delay_us(25);
adc_ALE=0; //Pull ALE line to zero after starting the conversion.
delay_us(50);
adc_START=0; //Pull Start line to zero after starting the conversion.
while(adc_EOC==0); // Wait till the ADC conversion is completed,
// EOC will be pulled to HIGH by ADC0809 once conversion is completed.
adc_OE=1; //Make the Output Enable high to bring the ADC data to port pins
DELAY_us(25);
adc_result=adc_DATABUS; //Read the ADC data from ADC bus
adc_OE=0; //After reading the data, disable the ADC output line.
return(adc_result) ;
}
view raw adc0809_read.c hosted with ❤ by GitHub


Hardware Connection

Adc0809 Interafce.png

Code

Below is the sample code to read the ADC value of channel0 and send it to P0 where the LED's are connected

#include<reg51.h>
/* ADC DataBus is connected to P2 and Control lines are connected to P1*/
#define adc_DATABUS P2
sbit adc_A = P1^0;
sbit adc_B = P1^1;
sbit adc_C = P1^2;
sbit adc_ALE = P1^3;
sbit adc_START = P1^4;
sbit adc_EOC = P1^5;
sbit adc_OE = P1^6;
void delay_us(int count)
{
while(count--);
}
void ADC_Init(void)
{
adc_START=0; //Initialize all the control lines to zero.
adc_ALE=0;
adc_OE=0;
adc_EOC=1; //Configure the EOC pin as I/P
adc_DATABUS=0xff; //configure adc_databus as input
}
uint8_t ADC_Read(uint8_t v_adcChannel_u8)
{
uint8_t adc_result;
adc_A=((v_adcChannel_u8>>0) & 0x01); //Select the channel
adc_B=((v_adcChannel_u8>>1) & 0x01); //for which the conversion needs to be done
adc_C=((v_adcChannel_u8>>2) & 0x01);
adc_ALE=1; // Latch the address by making the ALE high.
DELAY_us(50);
adc_Start=1; //Start the conversion after latching the channel address
delay_us(25);
adc_ALE=0; //Pull ALE line to zero after starting the conversion.
delay_us(50);
adc_START=0; //Pull Start line to zero after starting the conversion.
while(adc_EOC==0); // Wait till the ADC conversion is completed,
// EOC will be pulled to HIGH by ADC0809 once conversion is completed.
adc_OE=1; //Make the Output Enable high to bring the ADC data to port pins
delay_us(25);
adc_result=adc_DATABUS; //Read the ADC data from ADC bus
adc_OE=0; //After reading the data, disable the ADC output line.
return(adc_result) ;
}
void main()
{
ADC_Init(); //Initialize the ADC module
while(1)
{
P0 = ADC_Read(0); // Read the ADC value of channel zero and display on LED's Connected to PO
}
}

Using ExploreEmbedded Libraries

Below is the sample code to read the ADC value of channel0 and send it on UART at 9600 baud rate.

#include "adc.h"
#include "uart.h"
void main(void)
{
int adcValue;
ADC_Init(); /* Initialize the ADC module */
UART_Init(9600); /* Initialize UART at 9600 baud rate */
while(1)
{
adcValue = ADC_GetAdcValue(0); // Read the ADC value of channel zero
UART_Printf("ADC0 Value:%3d \n\r",adcValue); // Send the value on UART
}
return (0);
}

Pic16f877aADC01.PNG

Downloads

Download the complete project folder from the below link:
Hardware design Files and Code Library


Have an opinion, suggestion , question or feedback about the article let it out here!