Subversion Repositories FlightCtrl

Rev

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

Rev 2437 Rev 2466
Line 54... Line 54...
54
#include "eeprom.h"
54
#include "eeprom.h"
Line 55... Line 55...
55
 
55
 
56
char DisplayBuff[80];
56
char DisplayBuff[80];
Line 57... Line 57...
57
unsigned char DispPtr = 0;
57
unsigned char DispPtr = 0;
58
 
58
 
59
unsigned char MaxMenue = 18;
59
unsigned char MaxMenue = 19;
Line 60... Line 60...
60
unsigned char MenuePunkt = 0;
60
unsigned char MenuePunkt = 0;
61
unsigned char RemoteKeys = 0;
61
unsigned char RemoteKeys = 0;
Line 265... Line 265...
265
                   LCD_printfxy(0,3," %c   -   -   - ",'-' + 12 * (Motor[8].State>>7));
265
                   LCD_printfxy(0,3," %c   -   -   - ",'-' + 12 * (Motor[8].State>>7));
266
                   if(Motor[9].State>>7)  LCD_printfxy(4,3,"10");
266
                   if(Motor[9].State>>7)  LCD_printfxy(4,3,"10");
267
                   if(Motor[10].State>>7) LCD_printfxy(8,3,"11");
267
                   if(Motor[10].State>>7) LCD_printfxy(8,3,"11");
268
                   if(Motor[11].State>>7) LCD_printfxy(12,3,"12");
268
                   if(Motor[11].State>>7) LCD_printfxy(12,3,"12");
269
           break;
269
           break;
-
 
270
    case 19:
-
 
271
           LCD_printfxy(0,0,"BL Versions" );
-
 
272
                   for(i=0;i<3;i++)
-
 
273
                    {
-
 
274
                     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);
-
 
275
                         if(4 + i * 4 >= RequiredMotors) break;
-
 
276
                        }                      
-
 
277
           break;
270
#endif
278
#endif
271
    default:
279
    default:
272
           if(MenuePunkt == MaxMenue) MaxMenue--;
280
           if(MenuePunkt == MaxMenue) MaxMenue--;
273
           MenuePunkt = 0;
281
           MenuePunkt = 0;
274
           break;
282
           break;