Contiki 2.5
adc.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2007, Swedish Institute of Computer Science
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the Institute nor the names of its contributors
14  * may be used to endorse or promote products derived from this software
15  * without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * This file is part of the Contiki operating system.
30  *
31  */
32 
33 /**
34  * \file
35  * ADC functions.
36  * \author
37  * Nicolas Tsiftes <nvt@sics.se>
38  */
39 
40 #include "contiki.h"
41 #include <msp430/adc12.h>
42 
43 #include "contiki-msb430.h"
44 
45 void
46 adc_init(void)
47 {
48  ADC12CTL0 = SHT0_15 | SHT1_15 | MSC;
49 
50  /*
51  * SHP: sampling timer
52  * CONSEQ3: repeat sequence of channels
53  * CSTARTADD: conversion start address 0
54  */
55  ADC12CTL1 = SHP | CONSEQ_3 | CSTARTADD_0;
56 
57  /* P60: A0 */
58  ADC12MCTL0 = INCH_0 | SREF_0;
59  ADC12MCTL1 = INCH_1 | SREF_0;
60  ADC12MCTL2 = INCH_2 | SREF_0;
61 
62  /* P61: A1 */
63  ADC12MCTL3 = ADC12MCTL4 = ADC12MCTL5 = INCH_1 | SREF_0;
64 
65  /* P62: A2 */
66  ADC12MCTL6 = ADC12MCTL7 = ADC12MCTL8 = ADC12MCTL9 = INCH_2 | SREF_0;
67 
68  /* P63: A3 */
69  ADC12MCTL10 = INCH_3 | SREF_0;
70 
71  /* P64: A4 */
72  ADC12MCTL11 = INCH_4 | SREF_0;
73 
74  /* P65: A5 */
75  ADC12MCTL12 = INCH_5 | SREF_0;
76 
77  /* INCH10: Temperature sensor. */
78  ADC12MCTL13 = INCH_10 | SREF_0 | EOS;
79 }
80 
81 void
82 adc_on(void)
83 {
84  ADC12CTL0 |= ADC12ON;
85  clock_delay(20000);
86  ADC12CTL0 |= ENC;
87  ADC12CTL0 |= ADC12SC;
88 }
89 
90 void
91 adc_off(void)
92 {
93  ADC12CTL0 &= ~ENC;
94  clock_delay(20000);
95  ADC12CTL0 &= ~ADC12ON;
96 }