Subversion Repositories FlightCtrl

Rev

Rev 1112 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1112 thjac 1
/* pitch.h
1122 thjac 2
 *
3
 * copyright 2009 Thoams Jachmann
1112 thjac 4
 */
5
 
6
#ifndef _PITCH_H
7
#define _PITCH_H
8
 
1122 thjac 9
extern int (* pitch_value_ptr)( void );
1112 thjac 10
 
1122 thjac 11
// TODO Soll den Stick-Wert der Mittelstellung liefern
12
#define pitch_stickoffset()     0
1112 thjac 13
 
1122 thjac 14
extern int pitch_value( void );
1112 thjac 15
 
1122 thjac 16
// #define pitch_value()                ( pitch_value_ptr != 0 ? pitch_value_ptr() : 0 )
17
 
18
#endif // PITCH_H