How to use inbuilt ADC of LPC2148

www.spiroprojects.com
While dealing with controllers we are dealing with digital signals but real world is analog. In real world all natural quantities like temperature, pressure, light intensity etc. are analog. If we have to deal with such quantities using embedded systems, we have to convert these analog quantities which can be understood and proceed by digital signal. Devices used for this purpose is known as ADC. Special ICs such as ADC0804, ADC0808, ADC0809, Serial ADC MAX1112 etc. are handy for this. Nowadays, many controllers are having inbuilt ADC. LPC2148 of ARM7 family is one of the widely used controller and it also has multichannel ADC inbuilt. In this article, we will understand how to use inbuilt ADC of LPC2148.



ADCs acts as a bridge between the ANALOG real world and digital world of controllers. ADC converts analog voltage into a digital number which can be understood and proceed by controller. Let us understand this with an example.
LPC 2148 operates on 3.3V supply. If we use 10 bit ADC, 3.3V correspondences to 2^10=1023.  Half of 3.3V= 1.65V can be represented by 512, 0V as digital value 0 and so on.




Before proceeding further, let us first understand few basic concepts related to ADC.
1.   Resolution:
Analog voltage will be converted into a digital number. Number of bits required to store the digital number let say n bits is known as resolution. If a digital number is represented with n bits, the maximum value is 2n. So for 10 bit ADC resolution is 10 bit and maximum value is 210=1023.
2.   Step size
Minimum voltage which can be distinguished by controller is known as step size.
Step size= Maximum Voltage/ 2n where n= resolution
For LPC 2148, Maximum voltage=3.3V and n=10
So step size=3.3/1023= 0.0032258064 V = 3.23 mv (Approx.)
Voltage between 0 and 3.23 mV will be identified as same for controller. This identifies the accuracy of ADC.
3.   Conversion time
Converting analog voltage into a digital will not be done immediately. It will take few mili-seconds. Higher the resolution, higher is the conversion time.


So now, let us start with ADC of LPC 2148. First let us have quick look at features of it.
·         LPC 2148 has two inbuilt ADC modules known as ADC0 and ADC1.
·         Maximum resolution of ADC is 10 bit. It is configurable by programming.
·         ADC0 has 6 channels
·         ADC1 has 8 channels
·         Both ADC supports maximum clock frequency of 4.5 MHz (Operating frequency decides the conversion time)
Pins required for ADC are as follows.

adc

There are various registers associated with ADC0 and ADC1. Commonly user registers are ADC Control Registers (AD0CR & AD1CR) and ADCGR- ADC Global data register.
Let us understand all registers one by one.

The most important register for ADC is ADCR. Let us see the functions of each bit of this register.

 adc

Another important register is AD0GR and AD1GR. Bits of this register are as follows.

adc

Result of the conversion is stored in A/D Data register which has following structure.


adc

Steps for programming:
1.   Configure input pin as analog input pin for ADC
2.   Select channel of ADC
3.   Start conversion
4.   Wait till conversion is done
5.   Read data of ADC Conversion output
6.   Convert number into separate digits like 512 as separate 5,1 and 2
7.   Display digits on LCD
8.   Repeat above steps


 
Previous
Next Post »