mirror of
https://github.com/opentx/opentx.git
synced 2025-07-23 08:15:17 +03:00
More coproc info
This commit is contained in:
parent
fc3dcda4d4
commit
e919ffdc6a
1 changed files with 8 additions and 7 deletions
|
@ -131,16 +131,17 @@ void menuStatisticsDebug(uint8_t event)
|
|||
lcd_putsLeft(3*FH, STR_CPU_TEMP);
|
||||
putsTelemetryValue(MENU_DEBUG_COL_OFS, 3*FH, getTemperature(), UNIT_DEGREES, 0);
|
||||
putsTelemetryValue(20*FW+2, 3*FH, maxTemperature+g_eeGeneral.temperatureCalib, UNIT_DEGREES, 0);
|
||||
|
||||
lcd_putsLeft(4*FH, STR_COPROC_TEMP);
|
||||
if (Coproc_read > 2)
|
||||
if (Coproc_read==0) {
|
||||
lcd_putsAtt(9*FW+2, 4*FH, PSTR("Co Proc NACK"),INVERS);
|
||||
} else if (Coproc_read==0x81) {
|
||||
lcd_putsAtt(9*FW+2, 4*FH, PSTR("Inst.TinyApp"),INVERS);
|
||||
} else if (Coproc_read<3) {
|
||||
lcd_putsAtt(9*FW+2, 4*FH, PSTR("Upgr.TinyApp"),INVERS);
|
||||
} else {
|
||||
putsTelemetryValue(MENU_DEBUG_COL_OFS, 4*FH, Coproc_temp, UNIT_DEGREES, 0);
|
||||
else
|
||||
lcd_puts(MENU_DEBUG_COL_OFS-2*FW,4*FH, PSTR("---"));
|
||||
if (Coproc_maxtemp != -127)
|
||||
putsTelemetryValue(20*FW+2, 4*FH, Coproc_maxtemp, UNIT_DEGREES, 0);
|
||||
else
|
||||
lcd_puts(18*FW+2, 4*FH, PSTR("---"));
|
||||
}
|
||||
|
||||
lcd_putsLeft(5*FH, STR_TMAINMAXMS);
|
||||
lcd_outdezAtt(MENU_DEBUG_COL_OFS, 5*FH, (g_timeMainMax)/20, PREC2);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue