Subversion Repositories FlightCtrl

Rev

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

Rev 1139 Rev 1141
Line 5... Line 5...
5
// + see the File "License.txt" for further Informations
5
// + see the File "License.txt" for further Informations
6
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
6
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
7
#include "main.h"
7
#include "main.h"
8
#include "altcon.h"
8
#include "altcon.h"
9
#include "pitch.h"
9
#include "pitch.h"
-
 
10
#include "pitch_neutral.h"
10
#include "pitch_md.h"
11
#include "pitch_md.h"
11
#include "parameter.h"
12
#include "parameter.h"
Line 12... Line 13...
12
 
13
 
13
unsigned int  TestInt = 0;
14
unsigned int  TestInt = 0;
Line 145... Line 146...
145
           LCD_printfxy(0,2,"Gs:%4i  Gi:%4i ",ExternControl.Gas,ExternControl.Gier);
146
           LCD_printfxy(0,2,"Gs:%4i  Gi:%4i ",ExternControl.Gas,ExternControl.Gier);
146
           LCD_printfxy(0,3,"Hi:%4i  Cf:%4i ",ExternControl.Hight,ExternControl.Config);
147
           LCD_printfxy(0,3,"Hi:%4i  Cf:%4i ",ExternControl.Hight,ExternControl.Config);
147
           break;
148
           break;
148
    case 12:
149
    case 12:
149
           LCD_printfxy( 0, 0, "PitchSteuerung " );
150
           LCD_printfxy( 0, 0, "PitchSteuerung " );
150
           LCD_printfxy( 0, 1, "Modus: %s      ", pitchModeStrings[ pitch_current_mode() ] );
151
           LCD_printfxy( 0, 1, "Modus:    %8s", pitchModeStrings[ pitch_currentMode() ] );
-
 
152
           LCD_printfxy( 0, 2, "GsInit:   %3i", pitch_initialStickValue() );
-
 
153
           
Line 151... Line 154...
151
           
154
           
152
           // MD-Modus
155
           // MD-Modus
-
 
156
           switch( pitch_currentMode() ) {
-
 
157
                case PARAM_PITCH_MODE_NEUTRAL:
-
 
158
                        LCD_printfxy( 0, 3, "StickDiff: %2i", pitch_neutralDiff() )
-
 
159
                        break;
153
           switch( pitch_current_mode() ) {
160
               
154
                case PARAM_PITCH_MODE_MD:
161
                case PARAM_PITCH_MODE_MD:
155
                        LCD_printfxy( 0, 2, "Standgas:  %3i ", pitch_hover_value() );
162
                        LCD_printfxy( 0, 3, "Standgas: %3i", pitch_hoverValue() );
156
                        break;
163
                        break;
Line 157... Line 164...
157
           }
164
           }