1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-24 00:35:18 +03:00

Issue #89 fixed - ASpd, dTE, Cel-, Vfas- added to Telemetry. All

telemetry values available in logical switches
This commit is contained in:
Bertrand Songis 2014-02-13 17:31:40 +01:00
parent 491f4e12c2
commit 7d3642e16f
18 changed files with 57 additions and 20 deletions

View file

@ -1236,12 +1236,14 @@ void putsTelemetryChannel(xcoord_t x, uint8_t y, uint8_t channel, lcdint_t val,
#endif
case TELEM_CELL-1:
case TELEM_MIN_CELL-1:
putsTelemetryValue(x, y, val, UNIT_VOLTS, att|PREC2);
break;
case TELEM_TX_VOLTAGE-1:
case TELEM_VFAS-1:
case TELEM_CELLS_SUM-1:
case TELEM_MIN_VFAS-1:
putsTelemetryValue(x, y, val, UNIT_VOLTS, att|PREC1);
break;
@ -1263,6 +1265,7 @@ void putsTelemetryChannel(xcoord_t x, uint8_t y, uint8_t channel, lcdint_t val,
case TELEM_ACCy-1:
case TELEM_ACCz-1:
case TELEM_VSPD-1:
case TELEM_ASPD-1:
putsTelemetryValue(x, y, val, UNIT_RAW, att|PREC2);
break;