Subversion Repositories FlightCtrl

Rev

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

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