mirror of
https://github.com/opentx/opentx.git
synced 2025-07-26 01:35:21 +03:00
GPS last coords always displayed even if fix lost (in case model crashed)
This commit is contained in:
parent
e2088df620
commit
97723c5732
9 changed files with 154 additions and 148 deletions
|
@ -57,9 +57,9 @@ void menuProcStatistic(uint8_t event)
|
|||
lcd_puts( 17*FW, FH*0, STR_TOT);
|
||||
putsTime( 12*FW, FH*0, s_timeCumTot, 0, 0);
|
||||
|
||||
uint16_t traceRd = s_traceCnt>MAXTRACE ? s_traceWr : 0;
|
||||
uint8_t x=5;
|
||||
uint8_t y=60;
|
||||
uint8_t traceRd = (s_traceCnt < 0 ? s_traceWr : 0);
|
||||
const uint8_t x=5;
|
||||
const uint8_t y=60;
|
||||
lcd_hline(x-3,y,120+3+3);
|
||||
lcd_vline(x,y-32,32+3);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue