Rev 1141 | Details | Compare with Previous | 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 | |||
1157 | krheinwald | 9 | extern int (* pitchValueFP)( void ); |
1134 | thjac | 10 | |
1141 | thjac | 11 | #define pitch_initialStickValue() pitchInitialStickValue |
1134 | thjac | 12 | |
1141 | thjac | 13 | #define pitch_currentMode() ( pitchMode ) |
14 | #define pitch_currentModeString() ( pitchModeStrings[ pitchMode ] ) |
||
1134 | thjac | 15 | |
1139 | thjac | 16 | extern void pitch_init( void ); |
1157 | krheinwald | 17 | //extern int pitch_value( void ); |
1134 | thjac | 18 | |
1141 | thjac | 19 | extern int pitchInitialStickValue; |
1139 | thjac | 20 | extern unsigned char pitchMode; |
21 | extern char *pitchModeStrings[]; |
||
22 | |||
1134 | thjac | 23 | #endif // PITCH_H |