1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-25 09:15:42 +03:00

Merge pull request #1261 from iNavFlight/avs-glideslope-osd-element

Glideslope OSD element
This commit is contained in:
Alexander van Saase 2021-06-10 19:27:50 +02:00 committed by GitHub
commit 1532c25bff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 0 deletions

View file

@ -3034,6 +3034,12 @@
"osdElement_ESC_RPM": {
"message": "Motor RPM from ESC telemetry"
},
"osdElement_GLIDESLOPE": {
"message": "Glideslope"
},
"osdElement_GLIDESLOPE_HELP": {
"message": "Amount of horizontal distance traveled per unit of lost altitude"
},
"osdElement_VTX_CHANNEL": {
"message": "Video TX Band and Channel"
},

View file

@ -95,6 +95,7 @@ SYM.GVAR_1 = 0xEF;
SYM.GVAR_2 = 0xF0;
SYM.GVAR_3 = 0xF1;
SYM.GVAR_4 = 0xF2;
SYM.GLIDESLOPE = 0x7F;
var FONT = FONT || {};
@ -756,6 +757,12 @@ OSD.constants = {
min_version: '2.3.0',
preview: FONT.symbol(SYM.RPM) + '983',
},
{
name: 'GLIDESLOPE',
id: 124,
min_version: '3.0.0',
preview: FONT.symbol(127) + FONT.embed_dot('12.3'),
},
{
name: 'VERSION',
id: 119,