mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-24 16:55:24 +03:00
Add Link Quality symbol to the OSD preview
This commit is contained in:
parent
bb555568e2
commit
2ea9039e3b
1 changed files with 3 additions and 1 deletions
|
@ -6,6 +6,7 @@ SYM.loadSymbols = function() {
|
|||
SYM.BLANK = 0x20;
|
||||
SYM.VOLT = 0x06;
|
||||
SYM.RSSI = 0x01;
|
||||
SYM.LINK_QUALITY = 0x7B;
|
||||
SYM.AH_RIGHT = 0x02;
|
||||
SYM.AH_LEFT = 0x03;
|
||||
SYM.THR = 0x04;
|
||||
|
@ -72,6 +73,7 @@ SYM.loadSymbols = function() {
|
|||
SYM.AH_CENTER = 0x7E;
|
||||
SYM.AH_CENTER_LINE_RIGHT = 0x27;
|
||||
SYM.SPEED = null;
|
||||
SYM.LINK_QUALITY = null;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -979,7 +981,7 @@ OSD.loadDisplayFields = function() {
|
|||
default_position: -1,
|
||||
draw_order: 390,
|
||||
positionable: true,
|
||||
preview: '8'
|
||||
preview: FONT.symbol(SYM.LINK_QUALITY) + '8'
|
||||
},
|
||||
FLIGHT_DIST: {
|
||||
name: 'FLIGHT_DISTANCE',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue