Skip to content

Commit

Permalink
Add Link Quality symbol to the OSD preview
Browse files Browse the repository at this point in the history
  • Loading branch information
McGiverGim committed Jun 27, 2019
1 parent bb55556 commit 2ea9039
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/js/tabs/osd.js
Expand Up @@ -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;
Expand Down Expand Up @@ -72,6 +73,7 @@ SYM.loadSymbols = function() {
SYM.AH_CENTER = 0x7E;
SYM.AH_CENTER_LINE_RIGHT = 0x27;
SYM.SPEED = null;
SYM.LINK_QUALITY = null;
}
}

Expand Down Expand Up @@ -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',
Expand Down

0 comments on commit 2ea9039

Please sign in to comment.