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
|
#include <avr/interrupt.h>
#include <avr/io.h>
volatile unsigned short adc_value = 0x5555;
volatile unsigned char isr_count = 0;
volatile unsigned int in_loop = 0;
#if defined(PROC_at90s4433) || defined(PROC_atmega8)
#define CTLREG ADCSR
#else
#define CTLREG ADCSRA
#endif
void init(void) {
#ifdef PROC_attiny25
// ADMUX: channel 0, REF=5 (1 would also be possible!)
ADMUX = 0x50;
#else
// ADMUX: channel 0, ADCBG = 0 (at90s4433 only)
ADMUX = 0x00;
#endif
// ADEN = 1, ADFR = 1, ADIE = 1, ADPS = 5 CKx32 = 125kHz
CTLREG = 0xad;
}
ISR(ADC_vect) {
// read ADC value
adc_value = ADCL | (ADCH << 8);
// increment counter
isr_count++;
}
int main(void) {
init();
// start ADC
CTLREG = 0xed;
// enable interrupts
sei();
do {
in_loop = 1;
} while(1); // do forever
}
// EOF
|