Subversion Repositories Projects

Rev

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

Rev 826 Rev 832
Line 268... Line 268...
268
 
268
 
269
        write_time(8, bottom_line, uptime);
269
        write_time(8, bottom_line, uptime);
Line 270... Line 270...
270
        write_time(15, bottom_line, naviData.FlyingTime);
270
        write_time(15, bottom_line, naviData.FlyingTime);
-
 
271
 
-
 
272
        write_ndigit_number_u(24, bottom_line, naviData.SatsInUse, 2, 0);
-
 
273
        if (!(naviData.NCFlags & NC_FLAG_GPS_OK) && (old_NCFlags & NC_FLAG_GPS_OK)) {
-
 
274
            for (uint8_t x = 24; x < 28; x++)
-
 
275
                write_char_att_xy(x, bottom_line, BLINK);
-
 
276
        } else if ((naviData.NCFlags & NC_FLAG_GPS_OK) && !(old_NCFlags & NC_FLAG_GPS_OK)) {
-
 
277
            for (uint8_t x = 24; x < 28; x++)
Line 271... Line 278...
271
 
278
                write_char_att_xy(x, bottom_line, 0);
272
        write_ndigit_number_u(24, bottom_line, naviData.SatsInUse, 2, 0);
279
        }
273
 
280
 
274
        if (naviData.NCFlags & NC_FLAG_MANUAL_CONTROL) {
281
        if (naviData.NCFlags & NC_FLAG_MANUAL_CONTROL) {
Line 311... Line 318...
311
 
318
 
312
    // remember last values
319
    // remember last values
313
    last_RC_Quality = rc_signal;
320
    last_RC_Quality = rc_signal;
314
    last_UBat = naviData.UBat;
321
    last_UBat = naviData.UBat;
-
 
322
    old_MKFlags = naviData.FCFlags;
315
    old_MKFlags = naviData.FCFlags;
323
    old_NCFlags = naviData.NCFlags;
Line 316... Line 324...
316
    seconds_since_last_data = 0;
324
    seconds_since_last_data = 0;
317
 
325