980cac5cfbbdb60f37a2654e3f481129a4ed04a9
[fw/sdcc] / device / lib / pic16 / libio / adc / adcopen.c
1
2 /*
3  * adcopen - initialize AD module
4  *
5  * written by Vangelis Rokas, 2004 <vrokas AT otenet.gr>
6  *
7  * Devices implemented:
8  *      PIC18F[24][45][28]
9  *
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Library General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (at your option) any later version.
15  *
16  * This library is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24  */
25
26 /*
27 ** $Id$
28 */
29
30 #include <pic18fregs.h>
31
32 #include <adc.h>
33
34
35 /* parameters are:
36  *   channel: one of ADC_CHN_*
37  *   fosc:    one of ADC_FOSC_*
38  *   pcfg:    one of ADC_CFG_*
39  *   config:  ADC_FRM_*  |  ADC_INT_*
40  */
41
42 void adc_open(unsigned char channel, unsigned char fosc, unsigned char pcfg, unsigned char config)
43 {
44   ADCON0 = 0;
45   ADCON1 = 0;
46
47   /* setup channel */
48   ADCON0 |= (channel & 0x07) << 3;
49
50   /* setup fosc */
51   ADCON0 |= (fosc & 0x03) << 6;
52   ADCON1 |= (fosc & 0x04) << 4;
53   
54   /* setup reference and pins */
55   ADCON1 |= pcfg & 0x0f;
56   
57   ADCON1 |= (config & ADC_FRM_RJUST);
58   
59   if(config & ADC_INT_ON) {
60     PIR1bits.ADIF = 0;
61     PIE1bits.ADIE = 1;
62     INTCONbits.PEIE = 1;
63   }
64   
65   /* enable the A/D module */
66   ADCON0bits.ADON = 1;
67 }