Rev 832 | Rev 837 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 832 | Rev 835 | ||
---|---|---|---|
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 | ||
271 | 272 | write_ndigit_number_u(24, bottom_line, naviData.SatsInUse, 2, 0); |
|
272 | write_ndigit_number_u(24, bottom_line, naviData.SatsInUse, 2, 0); |
273 | // blink GPS in case no fix... |
273 | if (!(naviData.NCFlags & NC_FLAG_GPS_OK) && (old_NCFlags & NC_FLAG_GPS_OK)) { |
274 | if (!(naviData.NCFlags & NC_FLAG_GPS_OK) && ((old_NCFlags & NC_FLAG_GPS_OK) || old_NCFlags == 0)) { |
274 | for (uint8_t x = 24; x < 28; x++) |
275 | for (uint8_t x = 24; x < 28; x++) |
275 | write_char_att_xy(x, bottom_line, BLINK); |
276 | write_char_att_xy(x, bottom_line, BLINK); |
276 | } else if ((naviData.NCFlags & NC_FLAG_GPS_OK) && !(old_NCFlags & NC_FLAG_GPS_OK)) { |
277 | } else if ((naviData.NCFlags & NC_FLAG_GPS_OK) && !(old_NCFlags & NC_FLAG_GPS_OK)) { |