(7 intermediate revisions by the same user not shown)
Line 45: Line 45:
 
[[File:Adc0809 TimingDiagram.png]]
 
[[File:Adc0809 TimingDiagram.png]]
  
=ADC Registers=
+
=Pin Connections=
The below table shows the registers associated with PIC16F877A ADC.<br>
+
You can connect the ADC0809 to any of the PORT pins available on your boards and update this section accordingly.
{| class="table table-striped table-hover table-condensed table-bordered"
+
<html><script src="https://gist.github.com/SaheblalBagwan/dd0169a1f593236a66a0575ac3bd5ba2.js"></script></html>
|-class="info"
+
!Register || Description
+
|-
+
|ADCON0|| Used to Turn ON the ADC, Select the Sampling Freq and also Start the conversion.
+
|-
+
|ADCON1|| Used to configure the gpio pins for ADC
+
|-
+
|ADRESH|| Holds the higher byte of ADC result
+
|-
+
|ADRESL|| Holds the lower byte of ADC result
+
|}
+
<br><br>
+
  
Now lets see how to configure the individual registers for UART communication.
+
=Steps for ADC Conversion=
{| class="table table-striped table-hover table-condensed table-bordered"
+
#Select the required ADC channel using A,B,C pins.
|-class="info"
+
#Send a HIGH pulse on ALE for latching the above selected channel.
|ADCON0
+
#Send a HIGH pulse on Start pin to reset the SAR(Successive Approximation Register).
|-
+
#Pull the ALE line low as the address is lateched and futher changes on A,B,C should not change the channel.
|7 || 6 ||  5 || 4 || 3 || 2 || 1 || 0 
+
#Pull Start line LOW to start the conversion.
|-
+
#Wait for the EOC line go HIGH.
|ADCS1 || ADCS0 || CHS2 || CHS1 || CHS0 || GO/DONE || — || ADON
+
#Pull the OE line HIGH to bring the conversion data on DataBus.
|}
+
#Read the ADC data and pull OE line back to LOW.
<b>ADCS2-ADCS0:</b>A/D Conversion Clock Select bits
+
#Use the ADC data for further processing
[[FILE:adc_Freq_Select.png]]
+
<html><script src="https://gist.github.com/SaheblalBagwan/d47bf4d9abfb1c43a9571e7af9d58000.js"></script></html>
  
<b>CHS2-CHS0:</b>Analog Channel Select bits<br>
+
<br>
000 = Channel 0 (AN0)<br>
+
001 = Channel 1 (AN1)<br>
+
010 = Channel 2 (AN2)<br>
+
011 = Channel 3 (AN3)<br>
+
100 = Channel 4 (AN4)<br>
+
101 = Channel 5 (AN5)<br>
+
110 = Channel 6 (AN6)<br>
+
111 = Channel 7 (AN7)
+
  
<b>GO/DONE:</b> A/D Conversion Status bit<br>
+
=Hardware Connection=
When ADON = 1:<br>
+
[[File:Adc0809 Interafce.png]]
1 = A/D conversion in progress (setting this bit starts the A/D conversion which is automatically cleared by hardware when the A/D conversion is complete)<br>
+
0 = A/D conversion not in progress
+
 
+
<b>ADON:</b> A/D On bit<br>
+
1 = A/D converter module is powered up<br>
+
0 = A/D converter module is shut-off and consumes no operating current
+
 
+
 
+
{| class="table table-striped table-hover table-condensed table-bordered"
+
|-class="info"
+
|ADCON1
+
|-
+
|7 || 6 ||  5 || 4 || 3 || 2 || 1 || 0 
+
|-
+
|ADFM || ADCS2 || — || — || PCFG3 || PCFG2 || PCFG1 || PCFG0
+
|}
+
<b>ADFM:</b> A/D Result Format Select bit<br>
+
1 = Right justified. Six (6) Most Significant bits of ADRESH are read as ‘0’.<br>
+
0 = Left justified. Six (6) Least Significant bits of ADRESL are read as ‘0’.
+
[[FILE:Adc_Result_Justification.png]]
+
 
+
<b>ADCS2:</b> A/D Conversion Clock Select bit<br>
+
Check ADCS1:ADCS0 of ADCON0 register.
+
 
+
<b>PCFG3-PCFG0:</b> A/D Port Configuration Control bits
+
[[FILE:Adc_pin_config.png]]
+
 
<br><br>
 
<br><br>
 
[[FILE:PicAdcBlockDiagram.png]]
 
 
=Hardware Connections=
 
[[File:ADCExample bb.png|none]]
 
  
 
=Code=
 
=Code=
Below is the sample code to read the ADC value of channel0 and send it on UART at 9600 baud rate.<br>
+
Below is the sample code to read the ADC value of channel0 and send it to P0 where the LED's are connected<br>
 
<html>
 
<html>
<script src="https://gist.github.com/SaheblalBagwan/051cc0daca8d1cafcf662449a5fe271a.js"></script>
+
<script src="https://gist.github.com/SaheblalBagwan/328e438db789f5e73b74603733207fd6.js"></script></script>
 
</html>
 
</html>
  
 
=Using ExploreEmbedded Libraries=
 
=Using ExploreEmbedded Libraries=
 +
Below is the sample code to read the ADC value of channel0 and send it on UART at 9600 baud rate.
 
<html>
 
<html>
<script src="https://gist.github.com/sharanago/83a7537783383c8130576a79a493c87a.js"></script>
+
<script src="https://gist.github.com/SaheblalBagwan/45353c7008277f68204abfe09ba7fc7a.js"></script>
 
</html>
 
</html>
  
Line 133: 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.

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


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

Using ExploreEmbedded Libraries

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

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!