-
Notifications
You must be signed in to change notification settings - Fork 20
/
adc.c
160 lines (146 loc) · 3.7 KB
/
adc.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/*
* Copyright © 2014-2015, Matthias Urlichs <matthias@urlichs.de>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License (included; see the file LICENSE)
* for more details.
*/
/* This code implements basic adc input+output features.
*/
#include <avr/io.h>
#include <avr/interrupt.h>
#include "pgm.h"
#include <string.h>
#include "adc.h"
#include "features.h"
#include "moat.h"
#include "dev_data.h"
#include "debug.h"
#include "moat_internal.h"
#ifdef N_ADC
adc_t adcs[] = {
#include "_adc.h"
};
/* Each mainloop pass checks one adc. */
static uint8_t poll_this = 0;
static uint8_t poll_step = 0;
static uint8_t max_seen = 0;
/* Number of highest adc that has a change +1 */
uint8_t adc_changed_cache;
static inline char adc_check(adc_t *pp)
{
uint8_t x;
uint16_t val;
switch(poll_step++) {
case 0:
if (pp->flags & ADC_REF)
x = (1<<REFS1) | (1<<REFS0) | (1<<ADLAR);
else
x = (1<<REFS0) | (1<<ADLAR);
#ifdef __AVR_ATtiny84__
#define _VGND 0x20
#define _VBG 0x21
#define _VTEMP 0x22
#elif defined(__AVR_ATtiny25__) || defined(__AVR_ATtiny45__) || defined(__AVR_ATtiny85__)
#define _VGND 0x0D
#define _VBG 0x0C
#define _VTEMP 0x0F
#else
// Valid for Mega88..168..328
#define _VGND 0x0F
#define _VBG 0x0E
#define _VTEMP 0x08
#endif
if (!(pp->flags & ADC_ALT))
x |= pp->flags&ADC_MASK;
else switch(pp->flags & ADC_MASK) {
case ADC_VBG:
x |= _VBG; break;
case ADC_VGND:
x |= _VGND; break;
case ADC_VTEMP:
x |= _VTEMP; break;
default:
poll_step = 0;
return 1;
}
#undef _VGND
#undef _VBG
#undef _VTEMP
ADMUX = x;
ADCSRA = (1<<ADEN)|(1<<ADIF)|0x07; // slow
break;
case 1: break; // wait a bit
case 2:
ADCSRA |= (1<<ADSC);
break;
default:
if(!(ADCSRA & (1<<ADIF)))
break;
val = ADCL;
val |= ADCH<<8;
val |= val>>10; // fill the lower bits, so that max=0xFFFF
pp->value = val;
if (pp->flags & ADC_ALERT) {
if (pp->lower != 0xFFFF && pp->value <= pp->lower)
pp->flags |= ADC_IS_ALERT_L;
if (pp->upper != 0x0000 && pp->value >= pp->upper)
pp->flags |= ADC_IS_ALERT_H;
}
poll_step = 0;
return 1;
}
return 0;
}
void poll_adc(void)
{
uint8_t i = poll_this;
adc_t *pp;
if (i >= N_ADC) {
i=0;
adc_changed_cache = max_seen;
max_seen=0;
}
pp = &adcs[i];
if (adc_check(pp)) {
i += 1;
if (pp->flags & (ADC_IS_ALERT_L|ADC_IS_ALERT_H))
max_seen = i;
}
poll_this=i;
}
void init_adc(void)
{
adc_t *pp = adcs;
uint8_t i;
for(i=0;i<N_ADC;i++) {
pp->flags &=~(ADC_IS_ALERT_L|ADC_IS_ALERT_H);
pp->lower = 0xFFFF;
pp->upper = 0x0000;
#ifndef USE_ADC_AS_DIGITAL
// If pin is used as ADC, disable the digital logic buffer to save power.
#if defined(__AVR_ATmega168__) || defined(__AVR_ATmega88__) || defined (__AVR_ATmega328__)
// Only ADC0-5 have logic buffers
if(!(pp->flags & ADC_ALT) && (pp->flags & ADC_MASK) < 6) {
DIDR0|= (1 << (pp->flags & ADC_MASK));
}
#elif defined (__AVR_ATtiny84__)
if(!(pp->flags & ADC_ALT)) {
DIDR0|= (1 << (pp->flags & ADC_MASK));
}
#elif defined(__AVR_ATtiny25__) || defined(__AVR_ATtiny45__) || defined(__AVR_ATtiny85__)
// TODO: Proper support. ADC should be looked over on these
// devices generally, as it supports more complex channel configurations.
#endif
#endif
pp++;
}
}
#endif // any adcs