1 / 15

Analog to Digital Conversion

Analog to Digital Conversion. Using ATMEL’s ATmega168. ATmega168 Pins. PDIP. ( ADC5 /SCL/PCINT13). 1. 28. PC5. PC6. ( ADC4 /SDA/PCINT12). 2. (PCINT16/RXT). 27. PC4. PD0. ( ADC3 /PCINT11). 3. (PCINT17/TXD). 26. PC3. PD1. ( ADC2 /PCINT10). 4. (PCINT18/INT0). 25. PC2. PD2.

carlow
Download Presentation

Analog to Digital Conversion

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Analog to Digital Conversion Using ATMEL’s ATmega168

  2. ATmega168 Pins PDIP (ADC5/SCL/PCINT13) 1 28 PC5 PC6 (ADC4/SDA/PCINT12) 2 (PCINT16/RXT) 27 PC4 PD0 (ADC3/PCINT11) 3 (PCINT17/TXD) 26 PC3 PD1 (ADC2/PCINT10) 4 (PCINT18/INT0) 25 PC2 PD2 (ADC1/PCINT9) 5 (PCINT19/OC2B/INT1) 24 PC1 PD3 (ADC0/PCINT8) 6 (PCINT20/XCK/T0) 23 PC0 PD4 7 22 GND VCC 8 21 AREF GND 9 (PCINT6/XTAL1/TOSC1 20 AVCC PB6 (SCK/PCINT5) 10 (PCINT7/XTAL2/TOSC2 19 PB5 PB7 (MISO/PCINT4) 11 (PCINT21/OC0B/T1) 18 PB4 PD5 (MOSI/OC2A/PCINT3) 12 (PCINT22/OC0A/AIN0) 17 PB3 PD6 13 (PCINT23/AIN1) 16 PB2 PD7 (OC1A/PCINT1) 14 PCINT0/CLK0/ICP1) 15 PB1 PB0 Caveat: If using ADC0-3, do not use any other of these pins as a Digital Output (Noise). If using ADC4-5, do not use the other pin as a Digital Output.

  3. ADC Multiplexer Key Registers to enable ADC • ADMUX – ADC Multiplexer Selection Register • ADCSRA – ADC Control and Status Register A • ADCSRB – ADC Control and Status Register B • DIDR0 – Digital Input Disable Register 0

  4. 1. ADMUX – ADC Multiplexer Selection Register •Bit 7:6 – REFS1:0: Reference Selection Bits These bits select the voltage reference for the ADC, as shown below. If these bits are changed during a conversion, the change will not go in effect until this conversion is complete (ADIF in ADCSRA is set). The internal voltage reference options may not be used if an external reference voltage is being applied to the AREF pin. Voltage Reference Selections for ADC

  5. 1. ADMUX – ADC Multiplexer Selection Register • Bit 5 – ADLAR: ADC Left Adjust Result The ADLAR bit affects the presentation of the ADC conversion result in the ADC Data Register. Write one to ADLAR to left adjust the result. Otherwise, the result is right adjusted. Changing the ADLAR bit will affect the ADC Data Register immediately, regardless of any ongoing conversions. For a complete description of this bit, see ”ADCL and ADCH – The ADC Data Register” in the datasheet. ADLARset to 0 (Right Adjust) adc_low = ADCL; adc_high = ((unsigned int) (ADCH<<8)); adc_data = adc_low | adc_high; ADLARset to 1 (Left Adjust) adc_data = adc_high; Caveat: Must read ADCL before ADCH

  6. 1. ADMUX – ADC Multiplexer Selection Register •Bits 3:0 – MUX3:0: Analog Channel Selection Bits The value of these bits selects which analog inputs are connected to the ADC. (See Table below for details). If these bits are changed during a conversion, the change will not go in effect until this conversion is complete (ADIF in ADCSRA is set). Caveat: You can only use one pin at a time (e.g., you must change the MUX setting before reading that pin)

  7. 2. ADCSRA – ADC Control and Status Register A • Bit 7 – ADEN: ADC Enable Writing this bit to one enables the ADC. By writing it to zero, the ADC is turned off. Turning the ADC off while a conversion is in progress, will terminate this conversion.

  8. 2. ADCSRA – ADC Control and Status Register A • Bit 6 – ADSC: ADC Start Conversion In Single Conversion mode, write this bit to one to start each conversion. In Free Running mode, write this bit to one to start the first conversion. The first conversion after ADSC has been written after the ADC has been enabled, or if ADSC is written at the same time as the ADC is enabled, will take 25 ADC clock cycles instead of the normal 13. This first conversion performs initialization of the ADC. ADSC will read as one as long as a conversion is in progress. When the conversion is complete, it returns to zero. Writing zero to this bit has no effect. Caveat. If you are controlling when you want to take a sample, this is how you do it. By setting ADSC to 1 you begin a conversion.

  9. 2. ADCSRA – ADC Control and Status Register A • Bit 5 – ADATE: ADC Auto Trigger Enable When this bit is written to one, Auto Triggering of the ADC is enabled. The ADC will start a conversion on a positive edge of the selected trigger signal. The trigger source is selected by setting the ADC Trigger Select bits, ADTS in ADCSRB.

  10. 2. ADCSRA – ADC Control and Status Register A • Bit 4 – ADIF: ADC Interrupt Flag This bit is set when an ADC conversion completes and the Data Registers are updated. The ADC Conversion Complete Interrupt is executed if the ADIE bit and the I-bit in SREG are set. ADIF is cleared by hardware when executing the corresponding interrupt handling vector. Alternatively, ADIF is cleared by writing a logical one to the flag. Beware that if doing a Read-Modify-Write on ADCSRA, a pending Interrupt can be disabled. This also applies if the SBI and CBI instructions are used. Question: How do you determine what code will be executed when an interrupt is encountered?

  11. 2. ADCSRA – ADC Control and Status Register A • Bit 3 – ADIE: ADC Interrupt Enable When this bit is written to one and the I-bit in SREG is set, the ADC Conversion Complete Interrupt is activated.

  12. 2. ADCSRA – ADC Control and Status Register A • Bits 2:0 – ADPS2:0: ADC Prescaler Select Bits These bits determine the division factor between the system clock frequency and the input clock to the ADC ADC Prescaler Selections: Caveat: The ADC clock must be between 50kHz and 200kHz. Determine what is the minimum Division Factor you can use for our setup.

  13. 3. ADCSRB – ADC Control and Status Register B • Bit 2:0 – ADTS2:0: ADC Auto Trigger Source If ADATE in ADCSRA is written to one, the value of these bits selects which source will trigger an ADC conversion. If ADATE is cleared, the ADTS2:0 settings will have no effect. A conversion will be triggered by the rising edge of the selected Interrupt Flag. Note that switching from a trigger source that is cleared to a trigger source that is set, will generate a positive edge on the trigger signal. If ADEN in ADCSRA is set, this will start a conversion. Switching to Free Running mode (ADTS[2:0]=0) will not cause a trigger event, even if the ADC Interrupt Flag is set. ADC Auto Trigger Source Selections:

  14. 4. DIDR0 – Digital Input Disable Register 0 • Bit 5:0 – ADC5D..ADC0D: ADC5..0 Digital Input Disable When this bit is written logic one, the digital input buffer on the corresponding ADC pin is disabled. The corresponding PIN Register bit will always read as zero when this bit is set. When an analog signal is applied to the ADC5..0 pin and the digital input from this pin is not needed, this bit should be written logic one to reduce power consumption in the digital input buffer. Note that ADC pins ADC7 and ADC6 do not have digital input buffers, and therefore do not require Digital Input Disable bits.

  15. Lab 3 – Search LabWiring Diagram

More Related