summaryrefslogtreecommitdiffstats
path: root/source/ct-Bot/mcu/adc.c
blob: 1fb63d1fee33d749d50a0c74c1a800ece4d728c5 (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
/*
 * c't-Bot
 * 
 * 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 2 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, write to the Free 
 * Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 * MA 02111-1307, USA.
 * 
 */

/*! @file 	adc.c
 * @brief 	Routinen zum Einlesen der AnalogeingÄnge
 * @author 	Benjamin Benz (bbe@heise.de)
 * @date 	26.12.05
*/

#ifdef MCU

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

#include "adc.h"

/*!
 * Initialisert den AD-Umsetzer. 
 * @param channel Für jeden Kanal, den man nutzen möchte, 
 * muss das entsprechende Bit in channel gesetzt sein
 * Bit0 = Kanal 0 usw.
 */
void adc_init(uint8 channel){
	DDRA &= ~ channel;	// Pin als input
	PORTA &= ~ channel;	// Alle Pullups aus.
}

/*!
 * Liest einen analogen Kanal aus
 * @param channel Kanal - hex-Wertigkeit des Pins (0x01 fuer PA0; 0x02 fuer PA1, ..)
 */
uint16 adc_read(uint8 channel){
	uint16 result = 0x00;

	// interne Refernzspannung AVCC, rechts Ausrichtung
	ADMUX= _BV(REFS0) ;//| _BV(REFS1);	 //|(0<<ADLAR);	

	ADMUX |= (channel & 0x07);		// Und jetzt Kanal waehlen, nur single ended
	
	ADCSRA= (1<<ADPS2) | (1<<ADPS1)|	// prescale faktor= 128 ADC laeuft
		(1 <<ADPS0) |			// mit 14,7456MHz/ 128 = 115,2kHz 
		(1 << ADEN)|			// ADC an
		(1 << ADSC);			// Beginne mit der Konvertierung
			
	while ( (ADCSRA & (1<<ADSC)) != 0){asm volatile("nop");} //Warten bis konvertierung beendet
					      // Das sollte 25 ADC-Zyklen dauern!
					      // also 1/4608 s
	result= ADCL; 
	result+=(ADCH <<8);	// Ergebnis zusammenbauen
	
	return result;
}
#endif