Subversion Repositories Projects

Rev

Rev 275 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 275 Rev 284
Line 3... Line 3...
3
#include <avr/io.h>
3
#include <avr/io.h>
4
#include <avr/interrupt.h>
4
#include <avr/interrupt.h>
Line 5... Line 5...
5
 
5
 
Line 6... Line 6...
6
#include "analog.h"
6
#include "analog.h"
7
 
7
 
Line 8... Line 8...
8
volatile int16_t Adc0, Adc1, Adc2, Adc3, Adc4, Adc5, Adc6, Adc7;
8
volatile uint16_t Adc0, Adc1, Adc2, Adc3, Adc4, Adc5, Adc6, Adc7;
9
volatile uint8_t ADReady = 1;
9
volatile uint8_t ADReady = 1;
10
 
10