summaryrefslogtreecommitdiffstats
path: root/pressure_control/firmware/sensor.c
blob: 2ed36f336c1fa4493de56fbc4034edc16f21018e (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
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
/*
 *  Pneumatic pressure controller.
 *  Sensor input.
 *
 *  Copyright (C) 2008 Michael Buesch <mb@bu3sch.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 for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "sensor.h"
#include "util.h"

#include <avr/io.h>
#include <avr/interrupt.h>


/*** The sensor enable signal ***/
#define SENSOR_ENABLE_DDR	DDRC
#define SENSOR_ENABLE_PORT	PORTC
#define SENSOR_ENABLE_BIT	1


static inline void sensor_enable(void)
{
	SENSOR_ENABLE_PORT |= (1 << SENSOR_ENABLE_BIT);
}

static inline void sensor_disable(void)
{
	SENSOR_ENABLE_PORT &= ~(1 << SENSOR_ENABLE_BIT);
}

ISR(ADC_vect)
{
	uint16_t val;

	val = ADC;
	sensor_disable();
	//TODO process value
	sensor_result(val);
}

static inline void adc_trigger(bool with_irq)
{
	/* Set the multiplexer to ADC-0, AVcc Ref. */
	ADMUX = (1 << REFS0);
	/* Start ADC with a prescaler of 128. That's a ADC freq
	 * of 125kHz on a 16MHz crystal. */
	ADCSRA = (1 << ADEN) | (1 << ADSC) |
		 (1 << ADPS0) | (1 << ADPS1) | (1 << ADPS2) |
		 (with_irq ? (1 << ADIE) : 0);
}

void sensor_trigger_read(void)
{
	/* Enable the sensor and wait a dwell time for the
	 * sensor to stabilize. */
	sensor_enable();
	udelay(500);
	/* Finally trigger the ADC conversion. */
	adc_trigger(1);
}

void sensor_init(void)
{
	SENSOR_ENABLE_DDR |= (1 << SENSOR_ENABLE_BIT);
	sensor_disable();
	/* Discard the first ADC result. */
	adc_trigger(0);
	while (ADCSRA & (1 << ADSC))
		mb();
}
bues.ch cgit interface