Subversion Repositories FlightCtrl

Rev

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

Rev 838 Rev 966
Line -... Line 1...
-
 
1
/*
-
 
2
Copyright 2008, by Michael Walter
-
 
3
 
-
 
4
All functions written by Michael Walter are free software and can be redistributed and/or modified under the terms of the GNU Lesser
-
 
5
General Public License as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but
-
 
6
WITHOUT ANY WARRANTY, without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-
 
7
See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public
-
 
8
License along with this program. If not, see <http://www.gnu.org/licenses/>.
-
 
9
 
-
 
10
Please note: The software is based on the framework provided by H. Buss and I. Busker in their Mikrokopter projekt. All functions that
-
 
11
are not written by Michael Walter are under the license by H. Buss and I. Busker (license_buss.txt) published by www.mikrokopter.de
-
 
12
unless it is stated otherwise.
-
 
13
*/
-
 
14
 
1
extern int UBat;
15
extern int UBat;
2
extern int  AdWertNick, AdWertRoll, AdWertGier;
16
extern int  AdWertNick, AdWertRoll, AdWertGier;
3
extern int  AdWertAccRoll,AdWertAccNick,AdWertAccHoch;
17
extern int  AdWertAccRoll,AdWertAccNick,AdWertAccHoch;
-
 
18
extern int  AdWertNick_Raw, AdWertRoll_Raw, AdWertGier_Raw;
-
 
19
extern int  AdWertAccHoch_Raw, AdWertAccRoll_Raw,AdWertAccNick_Raw, AdWertAccHoch_Raw;
-
 
20
extern int AccumulatedACC_X, AccumulatedACC_Y, AccumulatedACC_Z;
-
 
21
extern int AccumulatedACC_X_cnt, AccumulatedACC_Y_cnt, AccumulatedACC_Z_cnt;
4
extern int  Aktuell_Nick,Aktuell_Roll,Aktuell_Gier,Aktuell_ax, Aktuell_ay,Aktuell_az;
22
extern int AccumulatedRoll_X, AccumulatedRoll_Y, AccumulatedRoll_Z, AccumulatedAirPressure;
-
 
23
extern int AccumulatedRoll_X_cnt, AccumulatedRoll_Y_cnt, AccumulatedRoll_Z_cnt, AccumulatedAirPressure_cnt;
-
 
24
extern unsigned int AdWertAirPressure_Raw;
Line 5... Line 25...
5
 
25
 
6
void ADC_Init(void);
26
void ADC_Init(void);
Line 7... Line 27...
7
void SucheLuftruckOffset(void);
27
void SucheLuftruckOffset(void);