mirror of
https://github.com/opentx/opentx.git
synced 2025-07-25 17:25:13 +03:00
Better precision for Analogs screen
This commit is contained in:
parent
9e0e71ad92
commit
8ed325c33f
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ bool menuStatsAnalogs(evt_t event)
|
|||
#if defined(JITTER_MEASURE)
|
||||
lcdDrawNumber(x+100, y, rawJitter[i].get());
|
||||
lcdDrawNumber(x+140, y, avgJitter[i].get());
|
||||
lcdDrawNumber(x+180, y, (int16_t)calibratedStick[CONVERT_MODE(i)]*25/256);
|
||||
lcdDrawNumber(x+180, y, (int16_t)calibratedStick[CONVERT_MODE(i)]*250/256, PREC1);
|
||||
#else
|
||||
lcdDrawNumber(x+100, y, (int16_t)calibratedStick[CONVERT_MODE(i)]*25/256);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue