blob: 9984080661a4fdcb72881cf21109625e15920b9a (
plain)
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
|
/* USRP E310 Firmware Atmel AVR ADC driver
* Copyright (C) 2014 Ettus Research
* This file is part of the USRP E310 Firmware
* The USRP E310 Firmware 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 2 of the License, or
* (at your option) any later version.
* The USRP E310 Firmware 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 for more details.
* You should have received a copy of the GNU General Public License
* along with the USRP E310 Firmware. If not, see <http://www.gnu.org/licenses/>.
*/
#include <avr/io.h>
#include "adc.h"
#include "utils.h"
void adc_init(void)
{
/* disable digital input on PC0 (ADC0) */
DIDR0 |= 0x1;
/* set to AVcc reference, left aligned and ADC0 */
ADMUX = (1 << REFS0)
| (0 << ADLAR)
| (0 << MUX0);
/* prescale clock by 128 */
ADCSRA = BIT(ADPS2) | BIT(ADPS1) | BIT(ADPS0);
}
uint16_t adc_single_shot(void)
{
uint16_t value;
/* turn on ADC */
ADCSRA |= (1 << ADEN);
/* start conversion */
ADCSRA |= (1 << ADSC);
/* busy wait for conversion */
while (ADCSRA & (1 << ADSC)) {
};
/* we need to first read the lower bits,
* which will lock the value until higher bits are read */
value = (ADCL << 0);
value |= (ADCH << 8);
/* turn adc of again */
ADCSRA &= ~(1 << ADEN);
return value;
}
|