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

AirSpeed now in Knots (and converted to km/h and mph according to Tx

settings). Tests needed (LCD and audio)
This commit is contained in:
bsongis 2014-04-15 18:11:13 +02:00
parent 560cd8f619
commit 506bc9b6ae
3 changed files with 10 additions and 1 deletions

View file

@ -1249,6 +1249,10 @@ void putsTelemetryChannel(xcoord_t x, uint8_t y, uint8_t channel, lcdint_t val,
putsTelemetryValue(x, y, div10_and_round(val), UNIT_RAW, att|PREC1);
break;
case TELEM_ASPD-1:
putsTelemetryValue(x, y, val, UNIT_KTS, att);
break;
#if defined(CPUARM)
case TELEM_SWR-1:
#endif