Rev 35 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 35 | Rev 39 | ||
---|---|---|---|
1 | /*####################################################################################### |
1 | /*####################################################################################### |
2 | 2 | ||
3 | #######################################################################################*/ |
3 | #######################################################################################*/ |
4 | 4 | ||
5 | extern volatile int UBat; |
5 | extern volatile int UBat; |
6 | extern volatile int AccumulateNick, AccumulateRoll, AccumulateGier,accumulate_AccRoll,accumulate_AccNick,accumulate_AccHoch; |
6 | extern volatile int AccumulateNick, AccumulateRoll, AccumulateGier,accumulate_AccRoll,accumulate_AccNick,accumulate_AccHoch; |
7 | extern volatile char MessanzahlNick, MessanzahlRoll, MessanzahlGier,messanzahl_AccNick, messanzahl_AccRoll,messanzahl_AccHoch; |
7 | extern volatile char MessanzahlNick, MessanzahlRoll, MessanzahlGier,messanzahl_AccNick, messanzahl_AccRoll,messanzahl_AccHoch; |
8 | extern volatile int Aktuell_Nick,Aktuell_Roll,Aktuell_Gier,Aktuell_ax, Aktuell_ay,Aktuell_az; |
8 | extern volatile int Aktuell_Nick,Aktuell_Roll,Aktuell_Gier,Aktuell_ax, Aktuell_ay,Aktuell_az; |
9 | extern volatile long Luftdruck; |
9 | extern volatile long Luftdruck; |
10 | extern volatile char messanzahl_Druck; |
10 | extern volatile char messanzahl_Druck; |
11 | extern volatile unsigned int ZaehlMessungen; |
11 | extern volatile unsigned int ZaehlMessungen; |
12 | extern unsigned char DruckOffsetSetting; |
12 | extern unsigned char DruckOffsetSetting; |
13 | extern volatile int HoeheD; |
13 | extern volatile int HoeheD; |
14 | extern volatile unsigned int MessLuftdruck; |
14 | extern volatile unsigned int MessLuftdruck; |
15 | extern volatile int StartLuftdruck; |
15 | extern volatile int StartLuftdruck; |
16 | 16 | ||
17 | extern unsigned int ReadADC(unsigned char adc_input); |
17 | unsigned int ReadADC(unsigned char adc_input); |
18 | extern void ADC_Init(void); |
18 | void ADC_Init(void); |
19 | extern void SucheLuftruckOffset(void); |
19 | void SucheLuftruckOffset(void); |
20 | 20 | ||
21 | 21 | ||
22 | #define ANALOG_OFF ADCSRA=0 |
22 | #define ANALOG_OFF ADCSRA=0 |
23 | #define ANALOG_ON ADCSRA=(1<<ADEN)|(1<<ADSC)|(1<<ADATE)|(1<<ADPS2)|(1<<ADPS1)|(1<<ADPS0)|(1<<ADIE) |
23 | #define ANALOG_ON ADCSRA=(1<<ADEN)|(1<<ADSC)|(1<<ADATE)|(1<<ADPS2)|(1<<ADPS1)|(1<<ADPS0)|(1<<ADIE) |
24 | 24 |