Subversion Repositories FlightCtrl

Rev

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

Rev 624 Rev 683
Line 1... Line 1...
1
/*#######################################################################################
1
/*#######################################################################################
Line 2... Line 2...
2
 
2
 
Line 3... Line 3...
3
#######################################################################################*/
3
#######################################################################################*/
4
 
4
 
5
extern volatile int UBat;
5
extern volatile int16_t UBat;
6
extern volatile int  AdWertNick, AdWertRoll, AdWertGier;
6
extern volatile int16_t AdValueGyrNick, AdValueGyrRoll, AdValueGyrGier;
-
 
7
extern volatile int16_t AdValueAccRoll, AdValueAccNick, AdValueAccTop;
7
extern volatile int  AdWertAccRoll,AdWertAccNick,AdWertAccHoch;
8
extern volatile int16_t Current_Nick, Current_Roll, Current_Gier;
8
extern volatile int  Aktuell_Nick,Aktuell_Roll,Aktuell_Gier,Aktuell_ax, Aktuell_ay,Aktuell_az;
9
extern volatile int16_t Current_AccX, Current_AccY, Current_AccZ;
9
extern volatile long  Luftdruck;
10
extern volatile int32_t Luftdruck;
10
extern volatile char messanzahl_Druck;
11
extern volatile int8_t messanzahl_Druck;
11
extern volatile unsigned int ZaehlMessungen;
12
extern volatile uint16_t ZaehlMessungen;
12
extern unsigned char DruckOffsetSetting;
13
extern uint8_t DruckOffsetSetting;
13
extern volatile int HoeheD;
14
extern volatile int16_t HoeheD;
14
extern volatile unsigned int  MessLuftdruck;
-
 
Line 15... Line -...
15
extern volatile int  StartLuftdruck;
-
 
16
extern volatile char MessanzahlNick;
-
 
17
 
15
extern volatile uint16_t MessLuftdruck;
Line -... Line 16...
-
 
16
extern volatile int16_t  StartLuftdruck;
-
 
17
 
-
 
18
void SucheLuftruckOffset(void);
-
 
19
 
-
 
20
void ADC_Init(void);
-
 
21
 
Line 18... Line -...
18
unsigned int ReadADC(unsigned char adc_input);
-
 
19
void         ADC_Init(void);
-