Subversion Repositories FlightCtrl

Rev

Rev 2675 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 ingob 1
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2
// + www.MikroKopter.com
3
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2050 holgerb 4
// + Software Nutzungsbedingungen (english version: see below)
5
// + der Fa. HiSystems GmbH, Flachsmeerstrasse 2, 26802 Moormerland - nachfolgend Lizenzgeber genannt -
6
// + Der Lizenzgeber räumt dem Kunden ein nicht-ausschließliches, zeitlich und räumlich* unbeschränktes Recht ein, die im den
7
// + Mikrocontroller verwendete Firmware für die Hardware Flight-Ctrl, Navi-Ctrl, BL-Ctrl, MK3Mag & PC-Programm MikroKopter-Tool 
8
// + - nachfolgend Software genannt - nur für private Zwecke zu nutzen.
9
// + Der Einsatz dieser Software ist nur auf oder mit Produkten des Lizenzgebers zulässig.
10
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
11
// + Die vom Lizenzgeber gelieferte Software ist urheberrechtlich geschützt. Alle Rechte an der Software sowie an sonstigen im
12
// + Rahmen der Vertragsanbahnung und Vertragsdurchführung überlassenen Unterlagen stehen im Verhältnis der Vertragspartner ausschließlich dem Lizenzgeber zu.
13
// + Die in der Software enthaltenen Copyright-Vermerke, Markenzeichen, andere Rechtsvorbehalte, Seriennummern sowie
14
// + sonstige der Programmidentifikation dienenden Merkmale dürfen vom Kunden nicht verändert oder unkenntlich gemacht werden.
15
// + Der Kunde trifft angemessene Vorkehrungen für den sicheren Einsatz der Software. Er wird die Software gründlich auf deren
16
// + Verwendbarkeit zu dem von ihm beabsichtigten Zweck testen, bevor er diese operativ einsetzt.
17
// + Die Haftung des Lizenzgebers wird - soweit gesetzlich zulässig - begrenzt in Höhe des typischen und vorhersehbaren
18
// + Schadens. Die gesetzliche Haftung bei Personenschäden und nach dem Produkthaftungsgesetz bleibt unberührt. Dem Lizenzgeber steht jedoch der Einwand 
19
// + des Mitverschuldens offen.
20
// + Der Kunde trifft angemessene Vorkehrungen für den Fall, dass die Software ganz oder teilweise nicht ordnungsgemäß arbeitet.
21
// + Er wird die Software gründlich auf deren Verwendbarkeit zu dem von ihm beabsichtigten Zweck testen, bevor er diese operativ einsetzt.
22
// + Der Kunde wird er seine Daten vor Einsatz der Software nach dem Stand der Technik sichern.
23
// + Der Kunde ist darüber unterrichtet, dass der Lizenzgeber seine Daten im zur Vertragsdurchführung erforderlichen Umfang
24
// + und auf Grundlage der Datenschutzvorschriften erhebt, speichert, verarbeitet und, sofern notwendig, an Dritte übermittelt.
25
// + *) Die räumliche Nutzung bezieht sich nur auf den Einsatzort, nicht auf die Reichweite der programmierten Software.
26
// + #### ENDE DER NUTZUNGSBEDINGUNGEN ####'
27
// +  Hinweis: Informationen über erweiterte Nutzungsrechte (wie z.B. Nutzung für nicht-private Zwecke) sind auf Anfrage per Email an info(@)hisystems.de verfügbar.
28
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
29
// + Software LICENSING TERMS
30
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
31
// + of HiSystems GmbH, Flachsmeerstrasse 2, 26802 Moormerland, Germany - the Licensor -
32
// + The Licensor grants the customer a non-exclusive license to use the microcontroller firmware of the Flight-Ctrl, Navi-Ctrl, BL-Ctrl, and MK3Mag hardware 
33
// + (the Software) exclusively for private purposes. The License is unrestricted with respect to time and territory*.
34
// + The Software may only be used with the Licensor's products.
35
// + The Software provided by the Licensor is protected by copyright. With respect to the relationship between the parties to this
36
// + agreement, all rights pertaining to the Software and other documents provided during the preparation and execution of this
37
// + agreement shall be the property of the Licensor.
38
// + The information contained in the Software copyright notices, trademarks, other legal reservations, serial numbers and other
39
// + features that can be used to identify the program may not be altered or defaced by the customer.
40
// + The customer shall be responsible for taking reasonable precautions
41
// + for the safe use of the Software. The customer shall test the Software thoroughly regarding its suitability for the
42
// + intended purpose before implementing it for actual operation. The Licensor's liability shall be limited to the extent of typical and
43
// + foreseeable damage to the extent permitted by law, notwithstanding statutory liability for bodily injury and product
44
// + liability. However, the Licensor shall be entitled to the defense of contributory negligence.
45
// + The customer will take adequate precautions in the case, that the software is not working properly. The customer will test
46
// + the software for his purpose before any operational usage. The customer will backup his data before using the software.
47
// + The customer understands that the Licensor collects, stores and processes, and, where required, forwards, customer data
48
// + to third parties to the extent necessary for executing the agreement, subject to applicable data protection and privacy regulations.
49
// + *) The territory aspect only refers to the place where the Software is used, not its programmed range.
50
// + #### END OF LICENSING TERMS ####
51
// + Note: For information on license extensions (e.g. commercial use), please contact us at info(@)hisystems.de.
52
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 ingob 53
#include "main.h"
1622 killagreg 54
#include "eeprom.h"
1 ingob 55
 
1925 holgerb 56
char DisplayBuff[80];
1051 killagreg 57
unsigned char DispPtr = 0;
1 ingob 58
 
2466 holgerb 59
unsigned char MaxMenue = 19;
1174 hbuss 60
unsigned char MenuePunkt = 0;
1053 killagreg 61
unsigned char RemoteKeys = 0;
1 ingob 62
 
1053 killagreg 63
#define KEY1    0x01
64
#define KEY2    0x02
65
#define KEY3    0x04
66
#define KEY4    0x08
67
#define KEY5    0x10
1051 killagreg 68
 
1 ingob 69
void LcdClear(void)
70
{
1051 killagreg 71
 unsigned char i;
72
 for(i=0;i<80;i++) DisplayBuff[i] = ' ';
1 ingob 73
}
74
 
1444 ingob 75
void Menu_Putchar(char c)
76
{
1934 holgerb 77
 if(DispPtr < 80) DisplayBuff[DispPtr++] = c;
1444 ingob 78
}
79
 
1 ingob 80
void Menu(void)
81
 {
1936 holgerb 82
  unsigned char i;
2537 holgerb 83
  static char DisableMenu = 0, AccMenu = 0, changed = 0;
84
 
85
if(!DisableMenu)
86
 {
1053 killagreg 87
  if(RemoteKeys & KEY1) { if(MenuePunkt) MenuePunkt--; else MenuePunkt = MaxMenue;}
1060 killagreg 88
  if(RemoteKeys & KEY2) { if(MenuePunkt == MaxMenue) MenuePunkt = 0; else MenuePunkt++;}
1053 killagreg 89
  if((RemoteKeys & KEY1) && (RemoteKeys & KEY2)) MenuePunkt = 0;
2537 holgerb 90
 }
1053 killagreg 91
  LcdClear();
92
  if(MenuePunkt < 10) {LCD_printfxy(17,0,"[%i]",MenuePunkt);}
93
  else {LCD_printfxy(16,0,"[%i]",MenuePunkt);};
94
 
1 ingob 95
  switch(MenuePunkt)
96
   {
1051 killagreg 97
    case 0:
2661 holgerb 98
                   if(OEM_String[0] == 255) {LCD_printfxy(0,0,"+ MikroKopter +");} else {LCD_printfxy(0,0,"+ %s +",OEM_String)};
2380 holgerb 99
           LCD_printfxy(0,1,"HW:V%d.%d SW:%d.%02d%c ",PlatinenVersion/10,PlatinenVersion%10, VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH +'a');
2482 holgerb 100
           LCD_printfxy(0,2,"Set:%d %s", ActiveParamSet,Mixer.Name);
101
           if(FC_StatusFlags3 & FC_STATUS3_BOAT) LCD_printfxy(16,2,"BOAT");
1944 holgerb 102
 
103
            if(VersionInfo.HardwareError[1] & FC_ERROR1_MIXER) LCD_printfxy(0,3,"Mixer Error!")
104
                    else
105
#if (defined(__AVR_ATmega1284__) || defined(__AVR_ATmega1284P__))
1934 holgerb 106
                        if(NC_ErrorCode)
107
                        {
1936 holgerb 108
                                LCD_printfxy(0,3,"ERR%2d:",NC_ErrorCode);
1934 holgerb 109
                                _printf_P(&Menu_Putchar, NC_ERROR_TEXT[NC_ErrorCode] , 0);
110
                        }
111
                   else
1944 holgerb 112
#endif
1702 holgerb 113
                   if(VersionInfo.HardwareError[0]) LCD_printfxy(0,3,"Hardware Error 1:%d !!",VersionInfo.HardwareError[0])
1210 hbuss 114
                   else
2382 holgerb 115
           if(MissingMotor) LCD_printfxy(0,3,"Missing BL-Ctrl:%d !!",MissingMotor)
1944 holgerb 116
#if (defined(__AVR_ATmega1284__) || defined(__AVR_ATmega1284P__))
117
#else
1702 holgerb 118
                   else
1944 holgerb 119
                        if(NC_ErrorCode)
120
                        {
121
                                LCD_printfxy(0,3,"! NC-ERR: %2d ! ",NC_ErrorCode);
122
                        }
123
#endif
124
//                 if(VersionInfo.HardwareError[1]) LCD_printfxy(0,3,"Error 2:%d !!",VersionInfo.HardwareError[1])
1702 holgerb 125
                   else
126
           if(I2CTimeout < 6) LCD_printfxy(0,3,"I2C ERROR!!!")
2382 holgerb 127
                   else
128
               if(Capacity.MinOfMaxPWM < 30) LCD_printfxy(0,3,"BL-Selftest Err:%2d",Capacity.MinOfMaxPWM)
129
 
1 ingob 130
           break;
1051 killagreg 131
    case 1:
2661 holgerb 132
                   if(VersionInfo.HardwareError[0] & FC_ERROR0_PRESSURE) LCD_printfxy(0,0,"ERROR:   %5i",(int)(HoehenWert/5))      
133
                   else   LCD_printfxy(0,0,"Height:  %5i",(int)(HoehenWert/5));
1419 ingob 134
           LCD_printfxy(0,1,"Setpoint:%5i",(int)(SollHoehe/5));
135
           LCD_printfxy(0,2,"Pressure:%5i",MessLuftdruck);
136
           LCD_printfxy(0,3,"Offset:  %5i",OCR0A);
2675 holgerb 137
//                      if(RemoteKeys & KEY4) StartLuftdruck = LuftdruckKompensiert;
2309 holgerb 138
#if (defined(__AVR_ATmega1284__) || defined(__AVR_ATmega1284P__))
2369 holgerb 139
                   if(ACC_AltitudeControl)     
140
                    {
141
                         LCD_printfxy(17,2,"(A)");
142
                         LCD_printfxy(17,3,"%i",CalAthmospheare);
143
                        }
2309 holgerb 144
#endif
1 ingob 145
           break;
1051 killagreg 146
    case 2:
1419 ingob 147
           LCD_printfxy(0,0,"act. bearing");
1 ingob 148
           LCD_printfxy(0,1,"Nick:      %5i",IntegralNick/1024);
149
           LCD_printfxy(0,2,"Roll:      %5i",IntegralRoll/1024);
2437 holgerb 150
           LCD_printfxy(0,3,"Compass:   %5i",CompassCorrected);
1 ingob 151
           break;
1051 killagreg 152
    case 3:
1966 holgerb 153
           for(i=1;i<9;i+=2) LCD_printfxy(0,i/2,"K%i:%4i  K%i:%4i ",i,PPM_in[i],i+1,PPM_in[i+1]);
1 ingob 154
           break;
1051 killagreg 155
    case 4:
2496 holgerb 156
           LCD_printfxy(0,0,"Ni:%4i  Ro:%4i ",ChannelNick,ChannelRoll);
157
           LCD_printfxy(0,1,"Gs:%4i  Gi:%4i ",ChannelGas+127,ChannelYaw);
1876 holgerb 158
           LCD_printfxy(0,2,"P1:%4i  P2:%4i ",PPM_in[EE_Parameter.Kanalbelegung[K_POTI1]]+127,PPM_in[EE_Parameter.Kanalbelegung[K_POTI2]]+127);
159
           LCD_printfxy(0,3,"P3:%4i  P4:%4i ",PPM_in[EE_Parameter.Kanalbelegung[K_POTI3]]+127,PPM_in[EE_Parameter.Kanalbelegung[K_POTI4]]+127);
1 ingob 160
           break;
1051 killagreg 161
    case 5:
1 ingob 162
           LCD_printfxy(0,0,"Gyro - Sensor");
2482 holgerb 163
           LCD_printfxy(0,1,"Nick %4i (%4i)",AdWertNick - AdNeutralNick/8, AdNeutralNick);
164
           LCD_printfxy(0,2,"Roll %4i (%4i)",AdWertRoll - AdNeutralRoll/8, AdNeutralRoll);
165
           LCD_printfxy(0,3,"Yaw  %4i (%4i)",AdNeutralGier - AdWertGier, AdNeutralGier);
2537 holgerb 166
                   AccMenu = 0;
1 ingob 167
           break;
1051 killagreg 168
    case 6:
2537 holgerb 169
                switch(AccMenu)
170
                 {
171
                        case 0:
172
                                        LCD_printfxy(0,0,"ACC - Sensor");
173
                                        LCD_printfxy(0,1,"Nick %4i (%3i)",AdWertAccNick,NeutralAccX);
174
                                        LCD_printfxy(0,2,"Roll %4i (%3i)",AdWertAccRoll,NeutralAccY);
175
                                        LCD_printfxy(0,3,"Z    %4i (%3i)(cal)",AdWertAccHoch,(int)NeutralAccZ);
176
                                    if(RemoteKeys & KEY4) AccMenu++;
177
                                        changed = 0;
178
                                        break;
179
                        case 1:        
180
                                        LCD_printfxy(0,0,"Calibration:");
181
                                        LCD_printfxy(0,1,"ACC:   N:%3i R:%3i ",NeutralAccY,NeutralAccX);
182
                                        if(ChannelNick || ChannelRoll)  LCD_printfxy(0,2,"Stick: (%i/%i) !! ",ChannelNick,ChannelRoll);
183
                                        if((FC_StatusFlags & FC_STATUS_MOTOR_RUN) && ((NC_GPS_ModeCharacter == ' ') || (NC_GPS_ModeCharacter == '/') || (NC_GPS_ModeCharacter == '-')))
184
                                         {
185
                                          DisableMenu = 1;
186
                                          if(!EE_Parameter.Driftkomp) EE_Parameter.Driftkomp = 6; // enables the Gyro-Drift compensation to make sure that a litlte calibration error won't effect the attitude                                   
187
                                          if(RemoteKeys & KEY1) { NeutralAccY--; changed = 1;}
188
                                          if(RemoteKeys & KEY2) { NeutralAccY++; changed = 1;}
189
                                          if(RemoteKeys & KEY3) { NeutralAccX--; changed = 1;}
190
                                          if(RemoteKeys & KEY4) { NeutralAccX++; changed = 1;}
191
                                          LCD_printfxy(13,0,"on ");
2540 holgerb 192
                                          if(changed)   LCD_printfxy(0,3,"land to save    ")
2537 holgerb 193
                                          else LCD_printfxy(0,3,"use keys to trim ACC")
194
                                         }
195
                                         else
196
                                         {
197
                                          LCD_printfxy(13,0,"off");
198
                                      DisableMenu = 0;
199
                                          if(!(FC_StatusFlags & FC_STATUS_MOTOR_RUN) && changed)
200
                                           {
2540 holgerb 201
                                                LCD_printfxy(0,3,"Save?     (yes)(no)");
2537 holgerb 202
                                            if(RemoteKeys & KEY3) { StoreNeutralToEeprom(); AccMenu = 0;}
203
                                            if(RemoteKeys & KEY4) { changed = 0;}
204
                                           }
205
                                          else LCD_printfxy(0,3,"Fly with GPS off");                                       
206
                                         }
207
                                        break;
208
                        default: AccMenu = 0; break;
209
                }
1 ingob 210
           break;
1051 killagreg 211
    case 7:
1526 killagreg 212
                        LCD_printfxy(0,0,"Voltage:   %3i.%1iV",UBat/10, UBat%10);
213
                        LCD_printfxy(0,1,"Current:   %3i.%1iA",Capacity.ActualCurrent/10, Capacity.ActualCurrent%10);
1529 killagreg 214
                        LCD_printfxy(0,2,"Power:     %4iW",Capacity.ActualPower);
1486 killagreg 215
                        LCD_printfxy(0,3,"Discharge: %5imAh", Capacity.UsedCapacity);
2537 holgerb 216
                        AccMenu = 0;
1486 killagreg 217
           break;
218
    case 8:
219
           LCD_printfxy(0,0,"Receiver");
220
           LCD_printfxy(0,2,"RC-Quality: %4i", SenderOkay);
221
           LCD_printfxy(0,3,"RC-Channels:%4i", Channels-1);
1 ingob 222
           break;
1486 killagreg 223
    case 9:
2426 holgerb 224
           LCD_printfxy(0,0,"Undervoltages  " );
225
           LCD_printfxy(0,1,"Warn: %2d.%dV",BattLowVoltageWarning/10,BattLowVoltageWarning%10);
226
           LCD_printfxy(0,2,"Home: %2d.%dV",BattComingHomeVoltage/10,BattComingHomeVoltage%10);
227
           LCD_printfxy(0,3,"Land: %2d.%dV",BattAutoLandingVoltage/10,BattAutoLandingVoltage%10);
1 ingob 228
           break;
1486 killagreg 229
    case 10:
1925 holgerb 230
           for(i=0;i<4;i++) LCD_printfxy(0,i,"Poti%i:  %3i",i+1,Poti[i]);
1 ingob 231
           break;
1486 killagreg 232
    case 11:
1925 holgerb 233
           for(i=0;i<4;i++) LCD_printfxy(0,i,"Poti%i:  %3i",i+5,Poti[i+4]);
1377 hbuss 234
           break;
1486 killagreg 235
    case 12:
2426 holgerb 236
           LCD_printfxy(0,0,"Flight-Time  " );
237
           LCD_printfxy(0,1,"Total:%5umin",FlugMinutenGesamt);
238
           LCD_printfxy(0,2,"Act:  %5umin",FlugMinuten);
239
           LCD_printfxy(13,3,"(reset)");
240
                   if(RemoteKeys & KEY4)
241
             {
242
               FlugMinuten = 0;
243
               SetParamWord(PID_FLIGHT_MINUTES, FlugMinuten);
244
                         }
245
           break;
246
#if (defined(__AVR_ATmega1284__) || defined(__AVR_ATmega1284P__))
247
    case 13:
248
           LCD_printfxy(0,0,"Compass");
249
           LCD_printfxy(0,1,"Magnet:   %5i",KompassValue);
250
           LCD_printfxy(0,2,"Gyro:     %5i",ErsatzKompassInGrad);
2437 holgerb 251
           LCD_printfxy(0,3,"True:     %5i",CompassCorrected);
2426 holgerb 252
           break;
253
    case 14:
1 ingob 254
           LCD_printfxy(0,0,"Servo  " );
255
           LCD_printfxy(0,1,"Setpoint  %3i",Parameter_ServoNickControl);
1763 killagreg 256
           LCD_printfxy(0,2,"Position: %3i",ServoNickValue/4);
1 ingob 257
           LCD_printfxy(0,3,"Range:%3i-%3i",EE_Parameter.ServoNickMin,EE_Parameter.ServoNickMax);
258
           break;
2426 holgerb 259
    case 15:
2522 holgerb 260
                   if(RequiredMotors < 13)
261
                    {
262
                         LCD_printfxy(0,0,"BL-Ctrl Errors " );
263
                         for(i=0;i<3;i++)                                                              
264
                                LCD_printfxy(0,i+1,"%3d %3d %3d %3d ",Motor[i*4].State & MOTOR_STATE_ERROR_MASK,Motor[i*4+1].State & MOTOR_STATE_ERROR_MASK,Motor[i*4+2].State & MOTOR_STATE_ERROR_MASK,Motor[i*4+3].State & MOTOR_STATE_ERROR_MASK);
265
                        }
266
                        else
267
                    {
268
                         for(i=0;i<4;i++)                                                              
269
                                LCD_printfxy(0,i,"%3d %3d %3d %3d ",Motor[i*4].State & MOTOR_STATE_ERROR_MASK,Motor[i*4+1].State & MOTOR_STATE_ERROR_MASK,Motor[i*4+2].State & MOTOR_STATE_ERROR_MASK,Motor[i*4+3].State & MOTOR_STATE_ERROR_MASK);
270
             LCD_printfxy(16,1,"BL-");
271
             LCD_printfxy(16,2,"Err.");
272
                        }
1211 hbuss 273
           break;
2426 holgerb 274
    case 16:
2522 holgerb 275
                   if(RequiredMotors < 13)
276
                   {
277
            LCD_printfxy(0,0,"BL- Temperature" );
278
                     for(i=0;i<3;i++)
279
                      {
280
                       LCD_printfxy(0,i+1,"%3d %3d %3d %3d ",Motor[i*4].Temperature,Motor[i*4+1].Temperature,Motor[i*4+2].Temperature,Motor[i*4+3].Temperature);
281
                          }                    
282
                        }
283
                        else
284
                   {
285
                     for(i=0;i<4;i++)
286
                      {
287
                       LCD_printfxy(0,i,"%3d %3d %3d %3d ",Motor[i*4].Temperature,Motor[i*4+1].Temperature,Motor[i*4+2].Temperature,Motor[i*4+3].Temperature);
288
                          }                    
289
            LCD_printfxy(16,1,"BL-");
290
            LCD_printfxy(16,2,"Temp");
291
                        }
292
            LCD_printfxy(18,3,"C");
1638 holgerb 293
           break;
2426 holgerb 294
    case 17:
2522 holgerb 295
                   if(RequiredMotors < 13)
296
                   {
297
                        LCD_printfxy(0,0,"BL Current" );
298
                        LCD_printfxy(11,3,"(in 0.1A)" );
299
                        for(i=0;i<3;i++)
300
                                {
301
                                        LCD_printfxy(0,i+1,"%3d %3d %3d %3d ",BL3_Current(i*4),BL3_Current(i*4+1),BL3_Current(i*4+2),BL3_Current(i*4+3));
302
                                        if(4 + i * 4 >= RequiredMotors) break;
303
                                }                      
304
                        }
305
                        else
306
                        {
307
                        for(i=0;i<4;i++)
308
                                {
309
                                        LCD_printfxy(0,i,"%3d %3d %3d %3d ",BL3_Current(i*4),BL3_Current(i*4+1),BL3_Current(i*4+2),BL3_Current(i*4+3));
310
                                }                      
311
            LCD_printfxy(16,2,"BL-");
312
            LCD_printfxy(16,3,"I");
313
                        }
2370 holgerb 314
           break;
2426 holgerb 315
    case 18:
2522 holgerb 316
            LCD_printfxy(0,0,"BL-Ctrl found " );
317
                        DispPtr = 20;
318
                        for(i=0; i<MAX_MOTORS; i++)
319
                        {
320
                         if(i == 6 || i == 12) LCD_printf("  ");
321
                         if(Motor[i].State & MOTOR_STATE_PRESENT_MASK)
322
                          {
323
                                LCD_printf(" %2i",i+1);
324
                          }
325
                         else LCD_printf("  -");
326
                        }
1210 hbuss 327
           break;
2466 holgerb 328
    case 19:
2522 holgerb 329
                   if(RequiredMotors < 13)
330
                   {
331
                        LCD_printfxy(0,0,"BL Versions" );
332
                        for(i=0;i<3;i++)
333
                                {
334
                                        LCD_printfxy(0,i+1,"%1d.%02d %1d.%02d %1d.%02d %1d.%02d",Motor[i*4].VersionMajor,Motor[i*4].VersionMinor,Motor[i*4+1].VersionMajor,Motor[i*4+1].VersionMinor,Motor[i*4+2].VersionMajor,Motor[i*4+2].VersionMinor,Motor[i*4+3].VersionMajor,Motor[i*4+3].VersionMinor);
335
                                        if(4 + i * 4 >= RequiredMotors) break;
336
                                }                      
337
                        }
338
                        else
339
                        {
340
                        for(i=0;i<4;i++)
341
                                LCD_printfxy(0,i," %1d.%02d %1d.%02d %1d.%02d %1d.%02d",Motor[i*4].VersionMajor,Motor[i*4].VersionMinor,Motor[i*4+1].VersionMajor,Motor[i*4+1].VersionMinor,Motor[i*4+2].VersionMajor,Motor[i*4+2].VersionMinor,Motor[i*4+3].VersionMajor,Motor[i*4+3].VersionMinor);
342
                        }
2466 holgerb 343
           break;
2536 holgerb 344
/*    case 20:
2479 holgerb 345
           LCD_printfxy(0,0,"BL MaxPWM " );
346
                   for(i=0;i<3;i++)
347
                    {
348
                     LCD_printfxy(0,i+1,"%3d %3d %3d %3d ",Motor[i*4].MaxPWM,Motor[i*4+1].MaxPWM,Motor[i*4+2].MaxPWM,Motor[i*4+3].MaxPWM);
349
                         if(4 + i * 4 >= RequiredMotors) break;
350
                        }                      
351
           break;
352
*/
2426 holgerb 353
#endif
1510 killagreg 354
    default:
355
           if(MenuePunkt == MaxMenue) MaxMenue--;
356
           MenuePunkt = 0;
1 ingob 357
           break;
358
    }
1053 killagreg 359
    RemoteKeys = 0;
304 ingob 360
}