Subversion Repositories FlightCtrl

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1112 thjac 1
/* pitch.h
2
 */
3
 
4
#ifndef _PITCH_H
5
#define _PITCH_H
6
 
7
extern int  pressureOffset;
8
extern char pitchNeutralStartup;
9
 
10
#define pitchNeutral()  ( pitchNeutralStartup | PARAM_PITCH_NEUTRAL )
11
 
12
int  pitch( void );
13
int  altitudeController( void );
14
 
15
#endif